diff --git a/extensions/chatgpt.py b/extensions/chatgpt.py index c45e824..686f48f 100644 --- a/extensions/chatgpt.py +++ b/extensions/chatgpt.py @@ -456,4 +456,8 @@ class ChatGPT(commands.Cog): async def setup(bot): - await bot.add_cog(ChatGPT(bot)) \ No newline at end of file + try: + await bot.add_cog(ChatGPT(bot)) + bot.logger.info("Successfully added ChatGPT Cog") + except: + bot.logger.info("Failed to load ChatGPT Cog") \ No newline at end of file