Skip to content
Merged
Show file tree
Hide file tree
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 @@ -256,7 +256,7 @@ private void doTransfer(
pipeSchemaRegionSnapshotEvent.toString(),
true);
} else {
LOGGER.info(
LOGGER.debug(
"Successfully transferred schema region snapshot {} and {}.",
mtreeSnapshotFile,
tagLogSnapshotFile);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ private void doTransfer(final PipeSchemaRegionWritePlanEventBatch batch) throws
batch.getPipeName(),
batch.getCreationTime(),
planNode.toString());
LOGGER.info("Successfully transferred batched schema events, batch size {}.", batch.size());
LOGGER.debug("Successfully transferred batched schema events, batch size {}.", batch.size());
}

private void doTransfer(
Expand Down Expand Up @@ -278,7 +278,7 @@ private void doTransfer(final PipeSchemaRegionSnapshotEvent snapshotEvent)
true);
}

LOGGER.info("Successfully transferred file {} and {}.", mTreeSnapshotFile, tagLogSnapshotFile);
LOGGER.debug("Successfully transferred file {} and {}.", mTreeSnapshotFile, tagLogSnapshotFile);
}

@Override
Expand Down
Loading