Skip to content

Commit

Permalink
downgrade conn/disconn logs
Browse files Browse the repository at this point in the history
  • Loading branch information
cam-schultz committed Aug 21, 2024
1 parent f8e47c4 commit 483f6f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions peers/external_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func (h *RelayerExternalHandler) HandleInbound(_ context.Context, inboundMessage
}

func (h *RelayerExternalHandler) Connected(nodeID ids.NodeID, version *version.Application, subnetID ids.ID) {
h.log.Info(
h.log.Debug(
"Connected",
zap.Stringer("nodeID", nodeID),
zap.Stringer("version", version),
Expand All @@ -105,7 +105,7 @@ func (h *RelayerExternalHandler) Connected(nodeID ids.NodeID, version *version.A
}

func (h *RelayerExternalHandler) Disconnected(nodeID ids.NodeID) {
h.log.Info(
h.log.Debug(
"Disconnected",
zap.Stringer("nodeID", nodeID),
)
Expand Down

0 comments on commit 483f6f8

Please sign in to comment.