浏览代码

测试打印日志

xujiayue 1 年之前
父节点
当前提交
04f2c5fb98
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      app/routers/jm_job_info.py

+ 1 - 0
app/routers/jm_job_info.py

@@ -64,6 +64,7 @@ def get_jm_job_infos(token_data: schemas.TokenData = Depends(verify_users), db:
         history = history[0:10]
         history.sort(key=lambda x: x['start_time'], reverse=False)
         jm_job_dict.update({'history':history})
+        print(jm_job)
         requirements_status = get_requirements_status_by_job_id(db,jm_job.id)
         jm_job_dict.update({'requirements_status': 0 if requirements_status else 1})
         res_list.append(jm_job_dict)