Need to always set LOG_FILE for the checks to work properly
This commit is contained in:
parent
9743d7670b
commit
619994c81e
1 changed files with 1 additions and 0 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue