summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2012-10-11 03:46:39 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2012-10-17 03:54:28 +0900
commit3027becda19b44131d6d9b0223ef2b1ca33daaf2 (patch)
treefa5fec87f093ea50f23cfc5c40db8ef8d5a3fea7
parent21f29c6f416b5dc482927a46318a4683e39ada92 (diff)
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>
-rw-r--r--ryu/controller/dispatcher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/controller/dispatcher.py b/ryu/controller/dispatcher.py
index b7f7cb7f..01cdcf45 100644
--- a/ryu/controller/dispatcher.py
+++ b/ryu/controller/dispatcher.py
@@ -190,7 +190,7 @@ class EventDispatcher(TrackInstances):
handled = self._dispatch(ev, self.events.get(ev.__class__, []))
if not handled:
- LOG.info('unhandled event %s', ev)
+ LOG.debug('unhandled event %s', ev)
class EventQueueBase(event.EventBase):