From 5a3e87d36133faaf2f7029c2e60ecf90fc59b521 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakob=20Gr=C3=B8nhaug?= Date: Sat, 27 Jun 2026 11:45:07 +0200 Subject: [PATCH] Correct log level environment variable on observability page The documented variable name was `LOG_LEVEL`, but the correct environment variable, referenced in RomM code and in `env-vars.md` is `LOGLEVEL` --- docs/administration/observability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/administration/observability.md b/docs/administration/observability.md index 2e371b63..a357e97d 100644 --- a/docs/administration/observability.md +++ b/docs/administration/observability.md @@ -16,7 +16,7 @@ It's often handy to know what's happening under the hood, especially when debugg ```yaml environment: - - LOG_LEVEL=INFO # DEBUG | INFO | WARNING | ERROR + - LOGLEVEL=INFO # DEBUG | INFO | WARNING | ERROR - FORCE_COLOR=0 # 1 to force colour even when not a TTY - NO_COLOR=1 # 1 to disable colour entirely ```