We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae83bc7 commit 0c1ff83Copy full SHA for 0c1ff83
1 file changed
src/Blockcore/Connection/ConnectionManagerBehavior.cs
@@ -85,7 +85,7 @@ private async Task OnStateChangedAsync(INetworkPeer peer, NetworkPeerState oldSt
85
86
if ((peer.State == NetworkPeerState.Failed) || (peer.State == NetworkPeerState.Offline))
87
{
88
- this.infoLogger.LogInformation("Peer '{0}' ({1}) offline, reason: '{2}.{3}'", peer.RemoteSocketEndpoint, peer.Inbound ? "inbound" : "outbound", peer.DisconnectReason?.Reason ?? "unknown", peer.DisconnectReason?.Exception?.Message != null ? string.Format(" {0}.", peer.DisconnectReason.Exception.Message) : string.Empty);
+ this.infoLogger.LogDebug("Peer '{0}' ({1}) offline, reason: '{2}.{3}'", peer.RemoteSocketEndpoint, peer.Inbound ? "inbound" : "outbound", peer.DisconnectReason?.Reason ?? "unknown", peer.DisconnectReason?.Exception?.Message != null ? string.Format(" {0}.", peer.DisconnectReason.Exception.Message) : string.Empty);
89
90
this.connectionManager.RemoveConnectedPeer(peer, "Peer offline");
91
}
0 commit comments