Warn when features are skipped
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled

This commit is contained in:
Parker M. 2025-03-26 18:51:26 -05:00
parent 5c5a00483f
commit 4a64f9b0b2
Signed by: parker
GPG Key ID: 505ED36FC12B5D5E

View File

@ -24,11 +24,12 @@ class MyBot(commands.Bot):
refresh_media_api_key.start()
login_genius.start()
config.LOG.info("Loading cogs...")
config.LOG.info(
"YouTube support is enabled, make sure to set a poToken"
if config.YOUTUBE_SUPPORT
else "YouTube support is disabled"
)
if config.YOUTUBE_SUPPORT:
config.LOG.info(
"YouTube support is enabled, make sure to set a poToken"
)
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"
)