8 lines
139 B
Python
8 lines
139 B
Python
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
async def setup(bot):
|
|
from .cog import LogCog
|
|
await bot.add_cog(LogCog(bot))
|