Skip to content

Commit

Permalink
log tweaks (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl authored Oct 17, 2023
1 parent 0d86006 commit 5f43d72
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ovos_messagebus/event_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@ def on_message(self, message):
if deserialized_message.msg_type not in filter_ogs:
LOG.debug(deserialized_message.msg_type +
f' source: {deserialized_message.context.get("source", [])}' +
f' destination: {deserialized_message.context.get("destination", [])}')
LOG.debug(str(deserialized_message.data))
LOG.debug(SessionManager.get(deserialized_message).serialize())
f' destination: {deserialized_message.context.get("destination", [])}\n'
f'SESSION: {SessionManager.get(deserialized_message).serialize()}')

try:
self.emitter.emit(deserialized_message.msg_type,
Expand Down

0 comments on commit 5f43d72

Please sign in to comment.