Skip to content

Commit

Permalink
core: services: commander: main: Use global BLUEOS_LOG_FOLDER_PATH ov…
Browse files Browse the repository at this point in the history
…er hardcoded

Signed-off-by: Patrick José Pereira <[email protected]>
  • Loading branch information
patrickelectric committed Jan 21, 2024
1 parent cab25f1 commit 0fc078f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/services/commander/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from loguru import logger

SERVICE_NAME = "commander"
LOG_FOLDER_PATH = "/var/logs/blueos"
LOG_FOLDER_PATH = os.environ.get("BLUEOS_LOG_FOLDER_PATH", "/var/logs/blueos")

limit_ram_usage()

Expand Down

0 comments on commit 0fc078f

Please sign in to comment.