You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
329 B
12 lines
329 B
1 year ago
|
import os
|
||
|
import time
|
||
|
from loguru import logger
|
||
|
|
||
|
log_path = os.path.join(os.getcwd(), 'logs')
|
||
|
if not os.path.exists(log_path):
|
||
|
os.mkdir(log_path)
|
||
|
|
||
|
log_path_error = os.path.join(log_path, f'{time.strftime("%Y-%m-%d")}_error.log')
|
||
|
|
||
7 months ago
|
logger.add(log_path_error, rotation='50MB', encoding='utf-8', enqueue=True, compression='zip')
|