From cb7400fd3f49400b3aba313d9b10cf4484aef754 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=A4ki?= Date: Tue, 20 Feb 2024 00:58:53 +0200 Subject: [PATCH] message test --- ovos_PHAL_plugin_discord_bot/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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())