Warn when features are skipped
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
This commit is contained in:
parent
5c5a00483f
commit
4a64f9b0b2
13
code/bot.py
13
code/bot.py
@ -24,11 +24,12 @@ class MyBot(commands.Bot):
|
||||
refresh_media_api_key.start()
|
||||
login_genius.start()
|
||||
config.LOG.info("Loading cogs...")
|
||||
if config.YOUTUBE_SUPPORT:
|
||||
config.LOG.info(
|
||||
"YouTube support is enabled, make sure to set a poToken"
|
||||
if config.YOUTUBE_SUPPORT
|
||||
else "YouTube support is disabled"
|
||||
)
|
||||
else:
|
||||
config.LOG.warn("YouTube support is disabled")
|
||||
for ext in os.listdir("./code/cogs"):
|
||||
if ext.endswith(".py"):
|
||||
# Load the OPTIONAL feedback cog
|
||||
@ -36,27 +37,27 @@ class MyBot(commands.Bot):
|
||||
ext[:-3] == "feedback"
|
||||
and config.FEEDBACK_CHANNEL_ID == None
|
||||
):
|
||||
config.LOG.info(
|
||||
config.LOG.warn(
|
||||
"Skipped loading feedback cog - channel ID not"
|
||||
" provided"
|
||||
)
|
||||
continue
|
||||
# Load the OPTIONAL bug cog
|
||||
if ext[:-3] == "bug" and config.BUG_CHANNEL_ID == None:
|
||||
config.LOG.info(
|
||||
config.LOG.warn(
|
||||
"Skipped loading bug cog - channel ID not provided"
|
||||
)
|
||||
continue
|
||||
# Load the OPTIONAL lyrics cog
|
||||
if ext[:-3] == "lyrics" and config.GENIUS_CLIENT_ID == None:
|
||||
config.LOG.info(
|
||||
config.LOG.warn(
|
||||
"Skipped loading lyrics cog - Genius API credentials"
|
||||
" not provided"
|
||||
)
|
||||
continue
|
||||
# Load the OPTIONAL autoplay cog
|
||||
if ext[:-3] == "autoplay" and config.AI_CLIENT == None:
|
||||
config.LOG.info(
|
||||
config.LOG.warn(
|
||||
"Skipped loading autoplay cog - AI API credentials"
|
||||
" not provided"
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user