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() refresh_media_api_key.start()
login_genius.start() login_genius.start()
config.LOG.info("Loading cogs...") config.LOG.info("Loading cogs...")
config.LOG.info( if config.YOUTUBE_SUPPORT:
"YouTube support is enabled, make sure to set a poToken" config.LOG.info(
if config.YOUTUBE_SUPPORT "YouTube support is enabled, make sure to set a poToken"
else "YouTube support is disabled" )
) else:
config.LOG.warn("YouTube support is disabled")
for ext in os.listdir("./code/cogs"): for ext in os.listdir("./code/cogs"):
if ext.endswith(".py"): if ext.endswith(".py"):
# Load the OPTIONAL feedback cog # Load the OPTIONAL feedback cog
@ -36,27 +37,27 @@ class MyBot(commands.Bot):
ext[:-3] == "feedback" ext[:-3] == "feedback"
and config.FEEDBACK_CHANNEL_ID == None and config.FEEDBACK_CHANNEL_ID == None
): ):
config.LOG.info( config.LOG.warn(
"Skipped loading feedback cog - channel ID not" "Skipped loading feedback cog - channel ID not"
" provided" " provided"
) )
continue continue
# Load the OPTIONAL bug cog # Load the OPTIONAL bug cog
if ext[:-3] == "bug" and config.BUG_CHANNEL_ID == None: if ext[:-3] == "bug" and config.BUG_CHANNEL_ID == None:
config.LOG.info( config.LOG.warn(
"Skipped loading bug cog - channel ID not provided" "Skipped loading bug cog - channel ID not provided"
) )
continue continue
# Load the OPTIONAL lyrics cog # Load the OPTIONAL lyrics cog
if ext[:-3] == "lyrics" and config.GENIUS_CLIENT_ID == None: if ext[:-3] == "lyrics" and config.GENIUS_CLIENT_ID == None:
config.LOG.info( config.LOG.warn(
"Skipped loading lyrics cog - Genius API credentials" "Skipped loading lyrics cog - Genius API credentials"
" not provided" " not provided"
) )
continue continue
# Load the OPTIONAL autoplay cog # Load the OPTIONAL autoplay cog
if ext[:-3] == "autoplay" and config.AI_CLIENT == None: if ext[:-3] == "autoplay" and config.AI_CLIENT == None:
config.LOG.info( config.LOG.warn(
"Skipped loading autoplay cog - AI API credentials" "Skipped loading autoplay cog - AI API credentials"
" not provided" " not provided"
) )