Files
muha-bot/logger.py
T
2026-07-09 23:34:34 +03:00

12 lines
167 B
Python

import logging
logging.basicConfig(
filename="logs/bot.log",
level=logging.INFO,
format=
"%(asctime)s | %(message)s"
)
logger = logging.getLogger()