From 1b381cb14c5766fbbfe133860c04c1eb0a01cb20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=A4ki?= Date: Tue, 20 Feb 2024 00:13:31 +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 b51927f..d50dd85 100644 --- a/ovos_PHAL_plugin_discord_bot/__init__.py +++ b/ovos_PHAL_plugin_discord_bot/__init__.py @@ -29,10 +29,10 @@ class DiscordBotPlugin(PHALPlugin): LOG.info(f"On reset triggered") def on_utterance(self, message=None): - LOG.info(f"On utterance triggered", message) + LOG.info(f"On utterance triggered: %s", message) def on_speak(self, message=None): - LOG.info(f"On speak triggered", message) + LOG.info(f"On speak triggered: %s", message)