yt-dlp-bot/worker/core/log.py
2022-06-10 23:35:48 +03:00

9 lines
268 B
Python

import logging
def setup_logging():
log_format = '%(asctime)s - [%(levelname)s] - [%(name)s:%(lineno)s] - %(message)s'
logging.basicConfig(format=log_format, level=logging.INFO)
log = logging.getLogger('sqlalchemy.engine.Engine')
log.handlers.pop()