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)