huaxingao commented on code in PR #14969:
URL: https://github.com/apache/iceberg/pull/14969#discussion_r2663149056
##########
core/src/main/java/org/apache/iceberg/CatalogUtil.java:
##########
@@ -112,7 +111,7 @@ public static void dropTableData(FileIO io, TableMetadata
metadata) {
}
}
- LOG.info("Manifests to delete: {}", Joiner.on(",
").join(manifestsToDelete));
+ LOG.info("{} Manifests to delete ", manifestsToDelete.size());
Review Comment:
The change makes sense: logging every manifest path at INFO can be very
noisy for large tables.
Non-blocking question: would it be useful to keep the detailed list
available at DEBUG (optionally guarded by LOG.isDebugEnabled()) to preserve
troubleshooting capability without polluting default logs?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]