Set log level to warning on production.
HEAD mainThe 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.
1 files 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)))
|