1
0

Add easily configurable log levels

This commit is contained in:
2025-08-18 15:47:12 -04:00
parent 10abe03ef9
commit dda1c6800c
2 changed files with 5 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ VERSION = "0.0.1"
# Load configuration # Load configuration
ROBLOSECURITY = config.roblosecurity or None ROBLOSECURITY = config.roblosecurity or None
DST_DIR = config.dst_dir or './AppSettings' DST_DIR = config.dst_dir or './AppSettings'
LOG_LEVEL = config.log_level or 'INFO'
# Collect AppSettings endpoints # Collect AppSettings endpoints
AppSettings = { AppSettings = {

View File

@@ -2,4 +2,7 @@
roblosecurity = "" roblosecurity = ""
# Unpacked luggage # Unpacked luggage
dst_dir = "./AppSettings" dst_dir = "./AppSettings"
# Log levels
log_level = "INFO"