diff --git a/ovos_PHAL_plugin_discord_bot/__init__.py b/ovos_PHAL_plugin_discord_bot/__init__.py index 21cac6f..f732e7b 100644 --- a/ovos_PHAL_plugin_discord_bot/__init__.py +++ b/ovos_PHAL_plugin_discord_bot/__init__.py @@ -30,10 +30,10 @@ class DiscordBotPlugin(PHALPlugin): LOG.info(f"On reset triggered") def on_utterance(self, message=None): - LOG.info(f"On utterance triggered: %s", message) + LOG.info(f"On utterance triggered: %s", message.serialize()) def on_speak(self, message=None): - LOG.info(f"On speak triggered: %s", message) + LOG.info(f"On speak triggered: %s", message.serialize())