1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Use crabs for errors

This commit is contained in:
Steffo 2019-09-08 18:11:04 +02:00
parent 2f41a9bf9e
commit 1c5ce6502f
2 changed files with 3 additions and 3 deletions

View file

@ -126,10 +126,10 @@ class DiscordBot(GenericBot):
f"Syntax: [c]/{command.name} {command.syntax}[/c]")
except Exception as e:
sentry_sdk.capture_exception(e)
error_message = f"{e.__class__.__name__}\n"
error_message = f"🦀 {e.__class__.__name__} 🦀\n"
error_message += '\n'.join(e.args)
log.error(f"Error in {command.name}: {error_message}")
await data.reply(f"⛔️ {error_message}")
await data.reply(f"{error_message}")
if __debug__:
raise

View file

@ -178,7 +178,7 @@ class TelegramBot(GenericBot):
f"Syntax: [c]/{command.name} {command.syntax}[/c]")
except Exception as e:
sentry_sdk.capture_exception(e)
error_message = f"⛔️ [b]{e.__class__.__name__}[/b]\n"
error_message = f"🦀 [b]{e.__class__.__name__}[/b] 🦀\n"
error_message += '\n'.join(e.args)
await data.reply(error_message)
if __debug__: