feat: Basic message logger.

This commit is contained in:
2025-08-13 14:39:49 +10:00
parent fcb14b94f6
commit 0f7f0582d3
6 changed files with 672 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import logging
logger = logging.getLogger(__name__)
async def setup(bot):
from .cog import LogCog
await bot.add_cog(LogCog(bot))