Skip to content

Commit

Permalink
chore: change request fragments action logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ablax committed Aug 29, 2024
1 parent 8e200af commit 8076d9a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 8076d9a

Please sign in to comment.