mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-05-01 22:12:18 +08:00
13 lines
276 B
Python
13 lines
276 B
Python
import logging
|
|
|
|
|
|
def setup_logger():
|
|
DATE_FORMAT = "%Y-%m-%d %X"
|
|
LOGGING_FORMAT = "%(asctime)s %(levelname)s: %(message)s"
|
|
logging.basicConfig(
|
|
level=logging.INFO,
|
|
datefmt=DATE_FORMAT,
|
|
format=LOGGING_FORMAT,
|
|
encoding="utf-8",
|
|
)
|