diff --git a/protofsm/state_machine.go b/protofsm/state_machine.go index 13f91eb32..5b6c2d233 100644 --- a/protofsm/state_machine.go +++ b/protofsm/state_machine.go @@ -266,7 +266,7 @@ func (s *StateMachine[Event, Env]) SendMessage(msg lnwire.Message) bool { return false } - log.Debugf("FSM(%v): sending msg: %v", s.cfg.Env.Name(), + log.Debugf("FSM(%v): new inbound msg: %v", s.cfg.Env.Name(), newLogClosure(func() string { return spew.Sdump(msg) }), @@ -441,7 +441,7 @@ func (s *StateMachine[Event, Env]) executeDaemonEvent( //nolint:funlen daemonEvent.Tx, daemonEvent.Label, ) if err != nil { - return fmt.Errorf("unable to broadcast txn: %w", err) + log.Errorf("unable to broadcast txn: %v", err) } return nil