浏览代码

update gunicorn.config loglevel: debug->info

liqian 2 年之前
父节点
当前提交
77c39127db
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      gunicorn.config.py

+ 1 - 1
gunicorn.config.py

@@ -4,7 +4,7 @@ import os
 log_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "logs")
 if not os.path.exists(log_path):
     os.makedirs(log_path)
-loglevel = "debug"
+loglevel = "info"
 accesslog = os.path.join(log_path, 'access.log')
 errorlog = os.path.join(log_path, 'error.log')