mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
Show loading/reloading failure errors in chat
This commit is contained in:
parent
b566881d0f
commit
f73b616bf0
@ -68,13 +68,15 @@ class Owner:
|
|||||||
log.exception(e)
|
log.exception(e)
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
await self.bot.say("There was an issue loading the module. Check"
|
await self.bot.say("There was an issue loading the module. Check"
|
||||||
" your console or logs for more information.")
|
" your console or logs for more information.\n"
|
||||||
|
"\nError: `{}`".format(e.args[0]))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
log.exception(e)
|
log.exception(e)
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
await self.bot.say('Module was found and possibly loaded but '
|
await self.bot.say('Module was found and possibly loaded but '
|
||||||
'something went wrong. Check your console '
|
'something went wrong. Check your console '
|
||||||
'or logs for more information.')
|
'or logs for more information.\n\n'
|
||||||
|
'Error: `{}`'.format(e.args[0]))
|
||||||
else:
|
else:
|
||||||
set_cog(module, True)
|
set_cog(module, True)
|
||||||
await self.disable_commands()
|
await self.disable_commands()
|
||||||
@ -154,7 +156,8 @@ class Owner:
|
|||||||
log.exception(e)
|
log.exception(e)
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
await self.bot.say("That module could not be loaded. Check your"
|
await self.bot.say("That module could not be loaded. Check your"
|
||||||
" console or logs for more information.")
|
" console or logs for more information.\n\n"
|
||||||
|
"Error: `{}`".format(e.args[0]))
|
||||||
else:
|
else:
|
||||||
set_cog(module, True)
|
set_cog(module, True)
|
||||||
await self.disable_commands()
|
await self.disable_commands()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user