aboutsummaryrefslogtreecommitdiff
path: root/guix-build-coordinator/agent.scm
diff options
context:
space:
mode:
Diffstat (limited to 'guix-build-coordinator/agent.scm')
-rw-r--r--guix-build-coordinator/agent.scm14
1 files changed, 9 insertions, 5 deletions
diff --git a/guix-build-coordinator/agent.scm b/guix-build-coordinator/agent.scm
index 3101622..0e2d8f3 100644
--- a/guix-build-coordinator/agent.scm
+++ b/guix-build-coordinator/agent.scm
@@ -61,11 +61,6 @@
systems
max-count
#:log (build-log-procedure lgr))))
- (log-msg lgr 'INFO
- "have " current-count
- " builds, max " max-count
- " builds, received "
- (- (length received-builds) current-count))
received-builds))
(define (process-job build)
@@ -146,6 +141,15 @@
(member (assoc-ref build "uuid")
build-ids))
fetched-builds)))
+
+ (log-msg lgr 'INFO
+ "max " max-parallel-builds
+ " builds, currently allocated "
+ (length fetched-builds))
+ (log-msg lgr 'INFO
+ "starting " (length new-builds)
+ " new "
+ (if (eq? (length new-builds) 1) "build" "builds"))
(for-each
(lambda (job-args)
(process-job-with-queue job-args))