diff options
| author | Frederick Muriuki Muriithi | 2026-04-10 13:16:26 -0500 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2026-04-10 13:16:26 -0500 |
| commit | 15ab1319990e0f5f208e3fbecfa0d0bc7c4d3f63 (patch) | |
| tree | 04a0aa2b19d3aff16aa6f6e14995155b23046021 | |
| parent | e59311315a10a1f907918f85f0b39daed2e7a5a3 (diff) | |
| download | gn-machines-15ab1319990e0f5f208e3fbecfa0d0bc7c4d3f63.tar.gz | |
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.
| -rw-r--r-- | production.scm | 4 |
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))) |
