You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
default_log_file = 'default.log'
if local_file is not None:
default_log_file = local_file
# 创建日志目录
parent_dir = os.path.dirname(default_log_file)
if not os.path.exists(parent_dir):
os.makedirs(parent_dir)