1
0
Fork 0
mirror of https://github.com/librenms/docker.git synced 2026-07-17 16:45:25 +00:00

Log to stdout

Prevent writing to log file by default and write to stdout
This can be overridden by LOG_CHANNEL and LOG_LEVEL
This commit is contained in:
Tony Murray 2026-01-27 18:45:13 -06:00
parent f45cd5726f
commit 61c97fc3a6

View file

@ -29,6 +29,9 @@ DB_PORT=${DB_PORT:-3306}
DB_NAME=${DB_NAME:-librenms}
DB_USER=${DB_USER:-librenms}
DB_TIMEOUT=${DB_TIMEOUT:-60}
LOG_CHANNEL=${LOG_CHANNEL:-stdout}
LOG_LEVEL=${LOG_LEVEL:-warning}
STDOUT_LOG_LEVEL=${STDOUT_LOG_LEVEL:-$LOG_LEVEL}
SIDECAR_DISPATCHER=${SIDECAR_DISPATCHER:-0}
#DISPATCHER_NODE_ID=${DISPATCHER_NODE_ID:-dispatcher1}