Browse Source

日志记录

master
dongchangxi 4 months ago
parent
commit
4a72a657bc
  1. 3
      timer/external_order_glbV2.py

3
timer/external_order_glbV2.py

@ -284,7 +284,8 @@ def export_and_update_glbs(pid,order_ids):
res = requests.post("https://shop.api.suwa3d.com/api/printOrder/updateExternalOrderStatusV2", data={'pid': pid,"order_ids":order_ids}) res = requests.post("https://shop.api.suwa3d.com/api/printOrder/updateExternalOrderStatusV2", data={'pid': pid,"order_ids":order_ids})
print(res.text) print(res.text)
# 记录日志文件 # 记录日志文件
logPath = os.path.join(config.workdir,'log/external_order_glbV2',pid,f'{order_ids[0]}.log') logPath = os.path.join(config.workdir,'log/external_order_glbV2',pid,f'{order_ids}.log')
os.makedirs(log_dir, exist_ok=True)
# 创建并且写入日志 # 创建并且写入日志
with open(logPath, 'w') as f: with open(logPath, 'w') as f:
f.write(f'{time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())} pid: {pid} 订单状态更新完成,共费时{libs.diff_time(start_time)}\n') f.write(f'{time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())} pid: {pid} 订单状态更新完成,共费时{libs.diff_time(start_time)}\n')

Loading…
Cancel
Save