From dda1c6800c4280745da24a2a5b292353ce8b734c Mon Sep 17 00:00:00 2001 From: Clair Delafuente Date: Mon, 18 Aug 2025 15:47:12 -0400 Subject: [PATCH] Add easily configurable log levels --- __init__.py | 1 + config.example.py | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index d159a20..039aa49 100644 --- a/__init__.py +++ b/__init__.py @@ -10,6 +10,7 @@ VERSION = "0.0.1" # Load configuration ROBLOSECURITY = config.roblosecurity or None DST_DIR = config.dst_dir or './AppSettings' +LOG_LEVEL = config.log_level or 'INFO' # Collect AppSettings endpoints AppSettings = { diff --git a/config.example.py b/config.example.py index 882a80d..8a94559 100644 --- a/config.example.py +++ b/config.example.py @@ -2,4 +2,7 @@ roblosecurity = "" # Unpacked luggage -dst_dir = "./AppSettings" \ No newline at end of file +dst_dir = "./AppSettings" + +# Log levels +log_level = "INFO" \ No newline at end of file