This is an automated email from the ASF dual-hosted git repository.
jmclean pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new d36ebac3f7 fix(logging): Correct logger class in
IcebergTableRenameOperations (#6522)
d36ebac3f7 is described below
commit d36ebac3f702efb8c84815b96bdae60497bbde98
Author: Brijesh Thummar <[email protected]>
AuthorDate: Wed Feb 26 06:01:04 2025 +0530
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.
---
.../gravitino/iceberg/service/rest/IcebergTableRenameOperations.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/iceberg/iceberg-rest-server/src/main/java/org/apache/gravitino/iceberg/service/rest/IcebergTableRenameOperations.java
b/iceberg/iceberg-rest-server/src/main/java/org/apache/gravitino/iceberg/service/rest/IcebergTableRenameOperations.java
index 23acc1da12..f0f508dcb1 100644
---
a/iceberg/iceberg-rest-server/src/main/java/org/apache/gravitino/iceberg/service/rest/IcebergTableRenameOperations.java
+++
b/iceberg/iceberg-rest-server/src/main/java/org/apache/gravitino/iceberg/service/rest/IcebergTableRenameOperations.java
@@ -43,7 +43,7 @@ import org.slf4j.LoggerFactory;
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public class IcebergTableRenameOperations {
- private static final Logger LOG =
LoggerFactory.getLogger(IcebergTableOperations.class);
+ private static final Logger LOG =
LoggerFactory.getLogger(IcebergTableRenameOperations.class);
@Context private HttpServletRequest httpRequest;