From 908a5e39bee2b1fd93f72eaac60df8da691abd88 Mon Sep 17 00:00:00 2001 From: BlueFox Date: Sat, 16 Nov 2024 15:11:13 +0100 Subject: [PATCH] Changed the log level default to 1 (info) --- README.md | 2 +- config.json | 2 +- main.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 77f9cde..472e377 100644 --- a/README.md +++ b/README.md @@ -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 | | -------------------------------------------- | ---- | ----------- | ------- | -| `"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_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..."` | diff --git a/config.json b/config.json index 5b4a636..6b81fd1 100644 --- a/config.json +++ b/config.json @@ -1,5 +1,5 @@ { -"LOG_LEVEL": 2, +"LOG_LEVEL": 1, "STARTUP_WELCOME_SHOW": true, "STARTUP_PROJECT_NAME":" UV-Belichter ", "STARTUP_MESSAGE_STARTING": "Starting...", diff --git a/main.py b/main.py index 0a7a5f9..3c77709 100644 --- a/main.py +++ b/main.py @@ -278,7 +278,7 @@ def settings(): sleep(0.5) config.LCD.move_to(0,1) config.LCD.putstr("Logging".center(16)) - config.LOG_LEVEL = 2 + config.LOG_LEVEL = 1 sleep(0.5) return True