Report state update errors as debug.

This commit is contained in:
Chris Rhodes 2017-02-23 17:54:45 -08:00 committed by GitHub
parent 94ee1fb978
commit c34affbc57

View file

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