Add logging statement to export commit log diffs action

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=192548282
This commit is contained in:
mcilwain 2018-04-11 19:44:18 -07:00 committed by jianglai
parent 168a23206d
commit 96f66eacd5

View file

@ -85,6 +85,8 @@ public final class ExportCommitLogDiffAction implements Runnable {
@Override @Override
public void run() { public void run() {
logger.infofmt(
"Exporting commit log diffs between %s and %s.", lowerCheckpointTime, upperCheckpointTime);
checkArgument(isAtOrAfter(lowerCheckpointTime, START_OF_TIME)); checkArgument(isAtOrAfter(lowerCheckpointTime, START_OF_TIME));
checkArgument(lowerCheckpointTime.isBefore(upperCheckpointTime)); checkArgument(lowerCheckpointTime.isBefore(upperCheckpointTime));
// Load the boundary checkpoints - lower is exclusive and may not exist (on the first export, // Load the boundary checkpoints - lower is exclusive and may not exist (on the first export,