Skip to content

Commit b7db6e7

Browse files
committed
promoted disabling peer message from debug to info! if the Node Software Version is not whitelisted.
1 parent d8b55f7 commit b7db6e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ethcore/sync/src/chain/handler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ impl SyncHandler {
167167
Some(session) => ip_addr = session.remote_address.to_string(),
168168
None => {}
169169
}
170-
debug!(target:"sync", "Disabling Peer (this Software Version not whitelisted) {} ip:{} ", peer_version, ip_addr);
170+
info!(target:"sync", "Disabling Peer (this Software Version not whitelisted) {} ip:{} ", peer_version, ip_addr);
171171
io.disable_peer(peer);
172172
} else if let Err(e) = sync.send_status(io, peer) {
173173
debug!(target:"sync", "Error sending status request: {:?}", e);

0 commit comments

Comments
 (0)