From 703a04402f3e8475ca48a183114188e2c420a28f Mon Sep 17 00:00:00 2001 From: Chris Sherwood Date: Fri, 13 Mar 2026 20:18:02 -0700 Subject: [PATCH] fix: default LOG_LEVEL to info in production Debug logging in production is unnecessarily noisy. Users who need debug output can still set LOG_LEVEL=debug in their compose.yml. Closes #285 Co-Authored-By: Claude Opus 4.6 --- install/management_compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/management_compose.yaml b/install/management_compose.yaml index f3dc199..448922b 100644 --- a/install/management_compose.yaml +++ b/install/management_compose.yaml @@ -19,7 +19,7 @@ services: environment: - NODE_ENV=production - PORT=8080 - - LOG_LEVEL=debug + - LOG_LEVEL=info - APP_KEY=replaceme - HOST=0.0.0.0 - URL=replaceme