Update logging configuration and file paths in constants and init modules

This commit is contained in:
William Valentin
2025-07-24 11:55:10 -07:00
parent 32c04efd2d
commit 3abe262804
3 changed files with 27 additions and 31 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
import os
from dotenv import load_dotenv
load_dotenv()
load_dotenv(override=True)
LOG_LEVEL = os.getenv("LOG_LEVEL", "INFO").upper()
LOG_PATH = os.getenv("LOG_PATH", "/tmp/logs")
LOG_PATH = os.getenv("LOG_PATH", "/tmp/logs/thechart")
LOG_CLEAR = os.getenv("LOG_CLEAR", "False").capitalize()