aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2024-06-06 17:36:37 +0100
committerChristopher Baines <mail@cbaines.net>2024-06-06 17:53:49 +0100
commit1da1b42cace1bfd249f5360c308b0694dc50ce9a (patch)
tree8961f674cba7371699e72983c4c259c6410681eb
parentf3a5744bc4a085cf51f9c677644b32a6e4e786f5 (diff)
downloadguix-1da1b42cace1bfd249f5360c308b0694dc50ce9a.tar
guix-1da1b42cace1bfd249f5360c308b0694dc50ce9a.tar.gz
services: guix-build-coordinator: Don't log with timestamps.
As the shepherd adds these to the logs. * gnu/services/guix.scm (make-guix-build-coordinator-start-script): Pass #:timestamp-log-output? #f to make-build-coordinator. (guix-build-coordinator-agent-shepherd-services): Add --timestamp-log-output=false to the arguments. Change-Id: I9073ee7b1cefa894d38fdf3831c59de693e087f6
-rw-r--r--gnu/services/guix.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/services/guix.scm b/gnu/services/guix.scm
index 96f5ecaac0..0182c21ea7 100644
--- a/gnu/services/guix.scm
+++ b/gnu/services/guix.scm
@@ -291,7 +291,8 @@
(build-coordinator (make-build-coordinator
#:database-uri-string #$database-uri-string
#:hooks hooks-with-defaults
- #:allocation-strategy #$allocation-strategy)))
+ #:allocation-strategy #$allocation-strategy
+ #:timestamp-log-output? #f)))
(run-coordinator-service
build-coordinator
@@ -421,6 +422,7 @@
(fork+exec-command
(list #$(file-append package "/bin/guix-build-coordinator-agent")
#$(string-append "--coordinator=" coordinator)
+ "--timestamp-log-output=false"
#$@(match authentication
(($ <guix-build-coordinator-agent-password-auth>
uuid password)