17 lines
569 B
Python
17 lines
569 B
Python
|
import os
|
|||
|
import logging
|
|||
|
|
|||
|
# Log输出,这里提供了自定义logging输出的机会,只需要创建一个logging.ini并且写入配置文件即可自定义输出
|
|||
|
file_path = os.path.dirname(os.path.realpath(__file__)) + "/config/logging.ini"
|
|||
|
if os.path.exists(file_path):
|
|||
|
import logging.config
|
|||
|
|
|||
|
logging.config.fileConfig(file_path)
|
|||
|
log = logging.getLogger("AutoMihoyoBBS")
|
|||
|
else:
|
|||
|
logging.basicConfig(
|
|||
|
level=logging.INFO,
|
|||
|
format='%(asctime)s %(levelname)s %(message)s',
|
|||
|
datefmt='%Y-%m-%dT%H:%M:%S')
|
|||
|
log = logger = logging
|