Skip to content

Commit

Permalink
feat(bot): set cogwatch debug option to true
Browse files Browse the repository at this point in the history
  • Loading branch information
JadenLabs committed Aug 23, 2024
1 parent 78f2619 commit b8dba40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bot/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from cogwatch import watch
from discord import Intents, CustomActivity
from discord.ext.commands import AutoShardedBot
from src.utils import logger, get_args
from src.utils import logger
from src.core import core

Expand Down Expand Up @@ -36,7 +37,7 @@ async def setup_hook(self):
await self.load_extensions()
await self.tree.sync()

@watch(path="src/bot/cogs", colors=True)
@watch(path="src/bot/cogs", colors=True, debug=True)
async def on_ready(self):
"""On ready event, sets presence"""
try:
Expand Down

0 comments on commit b8dba40

Please sign in to comment.