Browse Source

Report state update errors as debug.

Chris Rhodes 8 years ago
parent
commit
c34affbc57
1 changed files with 1 additions and 1 deletions
  1. 1 1
      event.go

+ 1 - 1
event.go

@@ -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)
 	}
 }