diff options
Diffstat (limited to 'code/bot.py')
-rw-r--r-- | code/bot.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/code/bot.py b/code/bot.py index 3569e68..d0154e3 100644 --- a/code/bot.py +++ b/code/bot.py @@ -28,6 +28,7 @@ class MyBot(commands.Bot): bot.openai = openai.OpenAI(api_key=config.OPENAI_API_KEY) config.LOG.info("Loading cogs...") + config.LOG.info("YouTube support is enabled" if config.YOUTUBE_SUPPORT else "YouTube support is disabled") for ext in os.listdir("./code/cogs"): if ext.endswith(".py"): # Load the OPTIONAL feedback cog |