silence unhandled event message

Users misunderstand that this harmful message is critical. Let's
silence it.

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
FUJITA Tomonori 2012-10-11 03:46:39 +09:00
parent 21f29c6f41
commit 3027becda1

View File

@ -190,7 +190,7 @@ class EventDispatcher(TrackInstances):
handled = self._dispatch(ev, self.events.get(ev.__class__, [])) handled = self._dispatch(ev, self.events.get(ev.__class__, []))
if not handled: if not handled:
LOG.info('unhandled event %s', ev) LOG.debug('unhandled event %s', ev)
class EventQueueBase(event.EventBase): class EventQueueBase(event.EventBase):