From 1da1b42cace1bfd249f5360c308b0694dc50ce9a Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Thu, 6 Jun 2024 17:36:37 +0100 Subject: [PATCH] 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 --- gnu/services/guix.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 (($ uuid password)