diff --git a/src/main/java/com/limechain/sync/warpsync/action/RequestFragmentsAction.java b/src/main/java/com/limechain/sync/warpsync/action/RequestFragmentsAction.java index f5df404e3..857dd0987 100644 --- a/src/main/java/com/limechain/sync/warpsync/action/RequestFragmentsAction.java +++ b/src/main/java/com/limechain/sync/warpsync/action/RequestFragmentsAction.java @@ -56,9 +56,9 @@ public void handle(WarpSyncMachine sync) { throw new MissingObjectException("No response received."); } - log.log(Level.INFO, "Successfully received fragments from peer"); + log.log(Level.INFO, "Successfully received response from peer"); if (resp.getFragments().length == 0) { - log.log(Level.WARNING, "No fragments received."); + log.log(Level.WARNING, "The response contained no fragments - the peer is up to date."); return; } warpSyncState.setWarpSyncFragmentsFinished(resp.isFinished());