Skip to content

Commit

Permalink
debug log level
Browse files Browse the repository at this point in the history
  • Loading branch information
antiochp committed Dec 15, 2020
1 parent 4a4fbdd commit 2309890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions servers/src/grin/sync/body_sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,13 @@ impl BodySync {
// We prefer outbound peers with greater difficulty.
let mut peers: Vec<_> = peers_iter().outbound().into_iter().collect();
if peers.is_empty() {
warn!("no outbound peers with more work, considering inbound");
debug!("no outbound peers with more work, considering inbound");
peers = peers_iter().inbound().into_iter().collect();
}

// If we have no peers (outbound or inbound) then we are done for now.
if peers.is_empty() {
warn!("no peers (inbound or outbound) with more work");
debug!("no peers (inbound or outbound) with more work");
return Ok(false);
}

Expand Down

0 comments on commit 2309890

Please sign in to comment.