Changed the log level default to 1 (info)

This commit is contained in:
BlueFox 2024-11-16 15:11:13 +01:00
parent 5ce8e592c3
commit 908a5e39be
Signed by: BlueFox
GPG Key ID: 327233DA85435270
3 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ All the configuration can be done in the [config.json](config.json) file in JSON
| Attribute name (on top level in config.json) | Type | Description | Default | | Attribute name (on top level in config.json) | Type | Description | Default |
| -------------------------------------------- | ---- | ----------- | ------- | | -------------------------------------------- | ---- | ----------- | ------- |
| `"LOG_LEVEL"` | int | defines up to which log level to show log messages in the serial console: warn (0), info (1), debug (2) | `2` | | `"LOG_LEVEL"` | int | defines up to which log level to show log messages in the serial console: warn (0), info (1), debug (2) | `1` |
| `"STARTUP_WELCOME_SHOW"` | bool | show the startup screen? | `true` | | `"STARTUP_WELCOME_SHOW"` | bool | show the startup screen? | `true` |
| `"STARTUP_PROJECT_NAME"` | str | the name shown at the welcome/startup screen | `" UV-Belichter "` | | `"STARTUP_PROJECT_NAME"` | str | the name shown at the welcome/startup screen | `" UV-Belichter "` |
| `"STARTUP_MESSAGE_STARTING"` | str | the message shown at startup when starting | `"Starting..."` | | `"STARTUP_MESSAGE_STARTING"` | str | the message shown at startup when starting | `"Starting..."` |

View File

@ -1,5 +1,5 @@
{ {
"LOG_LEVEL": 2, "LOG_LEVEL": 1,
"STARTUP_WELCOME_SHOW": true, "STARTUP_WELCOME_SHOW": true,
"STARTUP_PROJECT_NAME":" UV-Belichter ", "STARTUP_PROJECT_NAME":" UV-Belichter ",
"STARTUP_MESSAGE_STARTING": "Starting...", "STARTUP_MESSAGE_STARTING": "Starting...",

View File

@ -278,7 +278,7 @@ def settings():
sleep(0.5) sleep(0.5)
config.LCD.move_to(0,1) config.LCD.move_to(0,1)
config.LCD.putstr("Logging".center(16)) config.LCD.putstr("Logging".center(16))
config.LOG_LEVEL = 2 config.LOG_LEVEL = 1
sleep(0.5) sleep(0.5)
return True return True