Explorar el Código

fix: no debug config #744

master
zhayujie hace 1 año
padre
commit
94004b095b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      config.py

+ 1
- 1
config.py Ver fichero

@@ -140,7 +140,7 @@ def load_config():
else:
config[name] = value

if config["debug"]:
if config.get("debug", False):
logger.setLevel(logging.DEBUG)
logger.debug("[INIT] set log level to DEBUG")



Cargando…
Cancelar
Guardar