Improve bot error bubble uo along with a few other spots

This commit is contained in:
Jack Kingsman
2026-03-09 00:41:07 -07:00
parent b5c4413e63
commit c3d7b8f79a
7 changed files with 28 additions and 21 deletions
+2 -2
View File
@@ -130,8 +130,8 @@ class BotModule(FanoutModule):
except asyncio.TimeoutError:
logger.warning("Bot '%s' execution timed out", self.name)
return
except Exception as e:
logger.warning("Bot '%s' execution error: %s", self.name, e)
except Exception:
logger.exception("Bot '%s' execution error", self.name)
return
if response and self._active: