From fbc48dd1153796a68e9c03b20b0f9881d2085c5a 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 3bf5060..5519fbe 100644 --- a/install/management_compose.yaml +++ b/install/management_compose.yaml @@ -18,7 +18,7 @@ services: environment: - NODE_ENV=production - PORT=8080 - - LOG_LEVEL=debug + - LOG_LEVEL=info - APP_KEY=replaceme - HOST=0.0.0.0 - URL=replaceme