Skip to content
Merged
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 @@ -407,9 +407,10 @@ private void commitOperation(
operation.commit(); // abort is automatically called if this fails.
long durationMs = TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - startNano);
LOG.info(
"Committed {} to table: {}, checkpointId {} in {} ms",
"Committed {} to table: {}, branch: {}, checkpointId {} in {} ms",
description,
table.name(),
branch,
checkpointId,
durationMs);
committerMetrics.commitDuration(durationMs);
Expand Down