From 15ab1319990e0f5f208e3fbecfa0d0bc7c4d3f63 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Fri, 10 Apr 2026 13:16:26 -0500 Subject: Set log level to warning on production. The debug log level is way too noisy on production, making it difficult to see errors in the system. This commit will ensure that only errors and major event show up in the logs. --- production.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/production.scm b/production.scm index b4590e5..bd84a9b 100644 --- a/production.scm +++ b/production.scm @@ -92,7 +92,7 @@ (gn-guile-working-dir "/var/lib/genenetwork/gn-guile/") (gn-docs-working-branch "gn2-production-branch") (gn-guile-ssh-identity-file "/opt/home/gn-guile/.ssh/id-ed25519-gn2-production-on-tux04") - (log-level 'debug))) + (log-level 'warning))) (service gn-uploader-service-type (gn-uploader-configuration (server-name "uploader.genenetwork.org") @@ -104,5 +104,5 @@ (auth-server-url "https://auth.genenetwork.org/") (gn2-server-url "https://genenetwork.org") (sqlite-databases-directory "/var/lib/genenetwork/sqlite/gn-uploader") - (log-level 'debug))) + (log-level 'warning))) %base-services))) -- cgit 1.4.1