# File: src/logger.py import logging logging.basicConfig( level=logging.INFO, format="%(asctime)s [%(levelname)s] %(message)s", handlers=[ logging.StreamHandler(), logging.FileHandler("/tmp/cotienbot.log") # Ghi log vào /tmp ] ) logger = logging.getLogger(__name__)