Skip to content

Commit

Permalink
suppress warn log
Browse files Browse the repository at this point in the history
  • Loading branch information
SWvheerden committed Feb 2, 2024
1 parent 5c236ce commit a367edd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comms/core/src/connection_manager/dialer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ where
// Inflight dial was cancelled
(state, Err(ConnectionManagerError::DialCancelled)) => break (state, Err(ConnectionManagerError::DialCancelled)),
(state, Err(err)) => {
warn!(target: LOG_TARGET, "Failed to dial peer {} | Attempt {} | Error: {}", state.peer().node_id.short_str(), state.num_attempts(), err);
debug!(target: LOG_TARGET, "Failed to dial peer {} | Attempt {} | Error: {}", state.peer().node_id.short_str(), state.num_attempts(), err);
if state.num_attempts() >= config.max_dial_attempts {
break (state, Err(ConnectionManagerError::ConnectFailedMaximumAttemptsReached));
}
Expand Down

0 comments on commit a367edd

Please sign in to comment.