Skip to content

Commit d36ebac

Browse files
fix(logging): Correct logger class in IcebergTableRenameOperations (#6522)
### What changes were proposed in this pull request? Fixed an incorrect logging class reference in IcebergTableRenameOperations. ### Why are the changes needed? The logger was incorrectly referencing IcebergTableOperations instead of IcebergTableRenameOperations, which could cause confusion in logs. Fix: #6518 ### Does this PR introduce *any* user-facing change? No ### How was this patch tested? No testing is required.
1 parent f39f4d4 commit d36ebac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iceberg/iceberg-rest-server/src/main/java/org/apache/gravitino/iceberg/service/rest/IcebergTableRenameOperations.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
@Consumes(MediaType.APPLICATION_JSON)
4444
@Produces(MediaType.APPLICATION_JSON)
4545
public class IcebergTableRenameOperations {
46-
private static final Logger LOG = LoggerFactory.getLogger(IcebergTableOperations.class);
46+
private static final Logger LOG = LoggerFactory.getLogger(IcebergTableRenameOperations.class);
4747

4848
@Context private HttpServletRequest httpRequest;
4949

0 commit comments

Comments
 (0)