This is an automated email from the ASF dual-hosted git repository.

klion26 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git


The following commit(s) were added to refs/heads/master by this push:
     new 7ea367ee5 [AMORO-4044][amoro-format-iceberg] Fix SLF4J log format 
placeholder in TableEntriesScan (#4102)
7ea367ee5 is described below

commit 7ea367ee5a2b521c8763272c793dfa937af2a342
Author: Darcy <[email protected]>
AuthorDate: Tue Mar 3 10:30:21 2026 +0800

    [AMORO-4044][amoro-format-iceberg] Fix SLF4J log format placeholder in 
TableEntriesScan (#4102)
    
    [AMORO-4044] Fix SLF4J log format placeholder in TableEntriesScan
    
    Signed-off-by: Darcy <[email protected]>
---
 .../src/main/java/org/apache/amoro/scan/TableEntriesScan.java         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/amoro-format-iceberg/src/main/java/org/apache/amoro/scan/TableEntriesScan.java
 
b/amoro-format-iceberg/src/main/java/org/apache/amoro/scan/TableEntriesScan.java
index 2ae47f5b2..4649a1736 100644
--- 
a/amoro-format-iceberg/src/main/java/org/apache/amoro/scan/TableEntriesScan.java
+++ 
b/amoro-format-iceberg/src/main/java/org/apache/amoro/scan/TableEntriesScan.java
@@ -324,7 +324,7 @@ public class TableEntriesScan {
             .map(table.specs()::get)
             .orElseGet(
                 () -> {
-                  LOG.info("No specId found for the current fileRecord[%S]", 
filePath);
+                  LOG.warn("No specId found for the current fileRecord[{}]", 
filePath);
                   return table.spec();
                 });
 
@@ -356,7 +356,7 @@ public class TableEntriesScan {
             .map(table.specs()::get)
             .orElseGet(
                 () -> {
-                  LOG.info("No specId found for the current fileRecord[%S]", 
filePath);
+                  LOG.warn("No specId found for the current fileRecord[{}]", 
filePath);
                   return table.spec();
                 });
 

Reply via email to