Explorar el Código

update gunicorn.config loglevel: debug->info

liqian hace 2 años
padre
commit
77c39127db
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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')