Skip to content

Commit

Permalink
Addressing PR comments
Browse files Browse the repository at this point in the history
Signed-off-by: Jiri Peinlich <jiri.peinlich@gmail.com>
  • Loading branch information
gezero committed Mar 2, 2022
1 parent ff0a998 commit aec582b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public void stop() {
clearListeners();
started.set(false);
} else {
LOG.info("Attempted to stop when we are not even running...");
LOG.warn("Attempted to stop when we are not even running...");
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public FullImportBlockStep(
@Override
public void accept(final Block block) {
if (fullSyncTerminationCondition.shouldStopDownload()) {
LOG.info("Not importing another block, because terminal condition was reached.");
LOG.debug("Not importing another block, because terminal condition was reached.");
return;
}
final long blockNumber = block.getHeader().getNumber();
Expand Down

0 comments on commit aec582b

Please sign in to comment.