Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class RecordWriter {
throw new RuntimeException("Unknown File Format: " + fileFormat);
}
activeIcebergWriters.inc();
LOG.info(
LOG.debug(
"Opened {} writer for table '{}', partition {}. Writing to path: {}",
fileFormat,
table.name(),
Expand All @@ -137,7 +137,7 @@ public void close() throws IOException {
}
activeIcebergWriters.dec();
DataFile dataFile = icebergDataWriter.toDataFile();
LOG.info(
LOG.debug(
"Closed {} writer for table '{}' ({} records, {} bytes), path: {}",
fileFormat,
table.name(),
Expand Down
Loading