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 2ae47f5b2c..4649a17367 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 @@ private DataFile buildDataFile(StructLike fileRecord) { .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 @@ private DeleteFile buildDeleteFile(StructLike fileRecord, FileContent fileConten .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(); });