diff options
author | Christopher Baines <mail@cbaines.net> | 2024-06-06 17:36:37 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-06-06 17:53:49 +0100 |
commit | 1da1b42cace1bfd249f5360c308b0694dc50ce9a (patch) | |
tree | 8961f674cba7371699e72983c4c259c6410681eb /gnu | |
parent | f3a5744bc4a085cf51f9c677644b32a6e4e786f5 (diff) | |
download | guix-1da1b42cace1bfd249f5360c308b0694dc50ce9a.tar.gz guix-1da1b42cace1bfd249f5360c308b0694dc50ce9a.zip |
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
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/services/guix.scm | 4 |
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) |