Log bus messages with debug level

pull/2291/head
Åke Forslund 2019-09-06 13:31:32 +02:00
parent 43ed3a99a8
commit 146c3cad0c
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class MessageBusEventHandler(WebSocketHandler):
self.emitter.on(event_name, handler)
def on_message(self, message):
# LOG.debug(message)
LOG.debug(message)
try:
deserialized_message = Message.deserialize(message)
except Exception: