diff options
author | Aaron LI <aly@aaronly.me> | 2017-10-04 13:36:59 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-10-04 13:36:59 +0800 |
commit | a21fa84337356aeba294e00bbf63d19552d65553 (patch) | |
tree | fa7a1324d3e0050449caa8419142021f015f6b65 /fg21sim/configs/00-general.conf.spec | |
parent | fd40bc26b473c48dfecdc544ba9bb49cc2335737 (diff) | |
download | fg21sim-a21fa84337356aeba294e00bbf63d19552d65553.tar.bz2 |
configs: Use lower case for logging levels
Diffstat (limited to 'fg21sim/configs/00-general.conf.spec')
-rw-r--r-- | fg21sim/configs/00-general.conf.spec | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fg21sim/configs/00-general.conf.spec b/fg21sim/configs/00-general.conf.spec index fd75450..8e4ac59 100644 --- a/fg21sim/configs/00-general.conf.spec +++ b/fg21sim/configs/00-general.conf.spec @@ -122,17 +122,17 @@ ns = float(default=0.96, min=0.0) # Configurations for initialization/reconfiguration of the `logging` module [logging] -# DEBUG: Detailed information, typically of interest only when diagnosing +# debug: Detailed information, typically of interest only when diagnosing # problems. -# INFO: Confirmation that things are working as expected. -# WARNING: An dinciation that something unexpected happended, or indicative +# info: Confirmation that things are working as expected. +# warning: An dinciation that something unexpected happended, or indicative # of some problem in the near future (e.g., "disk space low"). # The software is still working as expected. -# ERROR: Due to a more serious problem, the software has not been able to +# error: Due to a more serious problem, the software has not been able to # perform some function. -# CRITICAL: A serious error, indicating that the program itself may be unable +# critical: A serious error, indicating that the program itself may be unable # to continue running. -level = option("DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL", default="INFO") +level = option("debug", "info", "warning", "error", "critical", default="info") # Set the format of displayed messages format = string(default="%(asctime)s [%(levelname)s] <%(name)s> %(message)s") |