Need to always set LOG_FILE for the checks to work properly

This commit is contained in:
Lutchy Horace 2025-04-02 12:05:51 -04:00
parent 9743d7670b
commit 619994c81e

View file

@ -61,6 +61,7 @@ redis_client = redis.Redis(
# Set up logging
LOG_FILE = os.getenv("LOG_FILE", CONFIG.get("LOG_FILE"))
handlers = [logging.StreamHandler()] # Always log to stdout
if LOG_FILE and LOG_FILE.strip(): # Log to file only if LOG_FILE is set and not empty
handlers.append(logging.FileHandler(LOG_FILE))