Skip to content

Commit 94a1a07

Browse files
committed
tapchannel: use trace log level for unhandled channel update messages
Change the log level from debug to trace for unhandled channel update messages. This reduces noise in the debug logs while still allowing visibility when needed.
1 parent 7358c1b commit 94a1a07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tapchannel/aux_funding_controller.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2136,8 +2136,8 @@ func (f *FundingController) CanHandle(msg msgmux.PeerMsg) bool {
21362136
return true
21372137
}
21382138

2139-
log.Debugf("Failed to handle: %T", msg.Message)
2140-
2139+
log.Tracef("FundingController encountered an unsupported message "+
2140+
"type: %T", msg.Message)
21412141
return false
21422142
}
21432143

0 commit comments

Comments
 (0)