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