diff options
author | 2025-07-21 02:32:58 +0100 | |
---|---|---|
committer | 2025-07-21 02:32:58 +0100 | |
commit | 6bfb0a29a0d5eaa4b5934713741a0c5dcd1a4caf (patch) | |
tree | 576f9b8229546de7a40b5474e824d5e557a8ad42 | |
parent | Introduce automated management one-to-one system (diff) |
Correct log call in management one-to-one system
-rw-r--r-- | arthur/exts/systems/system_information.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arthur/exts/systems/system_information.py b/arthur/exts/systems/system_information.py index 6f40dd4..32878a6 100644 --- a/arthur/exts/systems/system_information.py +++ b/arthur/exts/systems/system_information.py @@ -121,7 +121,7 @@ I enjoy talking to you. Your mind appeals to me. It resembles my own mind except selected_management_comment = random.choice(MANAGEMENT_ONE_TO_ONE_COMMENTS) await selected_member.send(selected_management_comment) - logger.info("Inspirational management tactic applied to %s", selected_member) + logger.info("Inspirational management tactic applied to {member}", member=selected_member) @Cog.listener() async def on_message(self, msg: Message) -> None: |