From 7daad0d28c6d29786190f797a018300444875c62 Mon Sep 17 00:00:00 2001 From: Cyberes Date: Sun, 19 Mar 2023 21:32:04 -0600 Subject: [PATCH] more logging --- matrix_gpt/bot/callbacks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/matrix_gpt/bot/callbacks.py b/matrix_gpt/bot/callbacks.py index 5e0c658..86dc65a 100644 --- a/matrix_gpt/bot/callbacks.py +++ b/matrix_gpt/bot/callbacks.py @@ -148,6 +148,8 @@ class Callbacks: log_full_response=self.log_full_response ) await command.process() + else: + logger.debug(f"Bot not reacting to event {event.event_id}.") async def invite(self, room: MatrixRoom, event: InviteMemberEvent) -> None: """Callback for when an invite is received. Join the room specified in the invite.