Handle error better.

This commit is contained in:
Bruce Marriner 2016-12-11 12:57:58 -06:00
parent 97d4489481
commit 7811077148

View file

@ -219,7 +219,7 @@ func (s *Session) onInterface(i interface{}) {
} }
err := s.State.onInterface(s, i) err := s.State.onInterface(s, i)
if err != nil { if err != nil {
s.log(LogError, err) s.log(LogError, "error dispatching internal event, %s", err)
} }
} }