mirror of
https://github.com/Evil0ctal/Douyin_TikTok_Download_API.git
synced 2025-04-22 12:05:13 +08:00
Fix unnecessary log records
This commit is contained in:
parent
74d217e5ae
commit
dd26c53a71
14
web_app.py
14
web_app.py
@ -84,11 +84,15 @@ def error_do(reason: str, value: str) -> None:
|
|||||||
t('点击此处在GitHub上进行反馈', 'Click here to give feedback on GitHub')))
|
t('点击此处在GitHub上进行反馈', 'Click here to give feedback on GitHub')))
|
||||||
put_html("<hr>")
|
put_html("<hr>")
|
||||||
if config['Web_APP']['Allow_Logs'] == 'True':
|
if config['Web_APP']['Allow_Logs'] == 'True':
|
||||||
# 将错误记录在logs.txt中
|
# 如果douyin或tiktok在输入值中,则记录到日志文件/If douyin or tiktok is in the input value, record it to the log file
|
||||||
error_date = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
|
if 'douyin' in value or 'tiktok' in value:
|
||||||
print(f"{error_date}: 正在记录错误信息...")
|
# 将错误记录在logs.txt中
|
||||||
with open('logs.txt', 'a') as f:
|
error_date = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
|
||||||
f.write(error_date + ":\n" + str(reason) + '\n' + "Input value: " + value + '\n')
|
print(f"{error_date}: 正在记录错误信息...")
|
||||||
|
with open('logs.txt', 'a') as f:
|
||||||
|
f.write(error_date + ":\n" + str(reason) + '\n' + "Input value: " + value + '\n')
|
||||||
|
else:
|
||||||
|
print(t('输入值中没有douyin或tiktok,不记录到日志文件中', 'No douyin or tiktok in the input value, not recorded to the log file'))
|
||||||
|
|
||||||
|
|
||||||
# iOS快捷指令弹窗/IOS shortcut pop-up
|
# iOS快捷指令弹窗/IOS shortcut pop-up
|
||||||
|
Loading…
x
Reference in New Issue
Block a user