Skip to content

Commit

Permalink
staticaddr: fix fsm logging
Browse files Browse the repository at this point in the history
  • Loading branch information
hieblmi committed Nov 14, 2024
1 parent 900e5ed commit e54ccfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion staticaddr/loopin/fsm.go
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ func (f *FSM) Infof(format string, args ...interface{}) {
// Debugf logs a debug message with the loop-in swap hash.
func (f *FSM) Debugf(format string, args ...interface{}) {
if f.loopIn == nil {
log.Infof(format, args...)
log.Debugf(format, args...)
return
}
log.Debugf(
Expand Down

0 comments on commit e54ccfd

Please sign in to comment.