Skip to content

Commit

Permalink
refactor(network): move unclean disconnect log to debug (#5541)
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig committed May 26, 2023
1 parent 0207d66 commit a42885d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/beacon-node/src/network/peers/peerManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ export class PeerManager {
try {
await this.libp2p.hangUp(peer);
} catch (e) {
this.logger.warn("Unclean disconnect", {peer: prettyPrintPeerId(peer)}, e as Error);
this.logger.debug("Unclean disconnect", {peer: prettyPrintPeerId(peer)}, e as Error);
}
}

Expand Down

0 comments on commit a42885d

Please sign in to comment.