Parcourir la source

Log level definition to config file

mod_update
Dirk Alders il y a 4 ans
Parent
révision
d4f0f22305
2 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 1
    0
      config_example/config.py
  2. 1
    1
      smarthome.py

+ 1
- 0
config_example/config.py Voir le fichier

26
 #
26
 #
27
 APP_NAME = 'smarthome'
27
 APP_NAME = 'smarthome'
28
 LOGTARGET = 'stdout'   # possible choices are: 'logfile' or 'stdout'
28
 LOGTARGET = 'stdout'   # possible choices are: 'logfile' or 'stdout'
29
+LOGLVL = 'DEBUG'
29
 
30
 
30
 LOGHOST = 'localhost'
31
 LOGHOST = 'localhost'
31
 LOGPORT = 19996
32
 LOGPORT = 19996

+ 1
- 1
smarthome.py Voir le fichier

369
 
369
 
370
 
370
 
371
 if __name__ == "__main__":
371
 if __name__ == "__main__":
372
-    report.appLoggingConfigure(os.path.dirname(__file__), config.LOGTARGET, ((config.APP_NAME, 'DEBUG'), ), fmt=config.formatter, host=config.LOGHOST, port=config.LOGPORT)
372
+    report.appLoggingConfigure(os.path.dirname(__file__), config.LOGTARGET, ((config.APP_NAME, config.LOGLVL), ), fmt=config.formatter, host=config.LOGHOST, port=config.LOGPORT)
373
     #
373
     #
374
     app = MyApp(0)
374
     app = MyApp(0)
375
     app.frame.run()
375
     app.frame.run()

Chargement…
Annuler
Enregistrer