[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: Improve logging message.
From: |
Mathieu Othacehe |
Subject: |
branch master updated: Improve logging message. |
Date: |
Sat, 03 Oct 2020 02:51:42 -0400 |
This is an automated email from the git hooks/post-receive script.
mothacehe pushed a commit to branch master
in repository guix-cuirass.
The following commit(s) were added to refs/heads/master by this push:
new d9c9870 Improve logging message.
d9c9870 is described below
commit d9c98705033de7b6c1a65d57ce1192bb25c68ac9
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Sat Oct 3 08:50:53 2020 +0200
Improve logging message.
* src/cuirass/base.scm (build-packages): Improve the logging message.
---
src/cuirass/base.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/cuirass/base.scm b/src/cuirass/base.scm
index 04ea416..0c06bf7 100644
--- a/src/cuirass/base.scm
+++ b/src/cuirass/base.scm
@@ -689,8 +689,9 @@ by PRODUCT-SPECS."
(define (build-packages store jobs eval-id)
"Build JOBS and return a list of Build results."
(define derivations
- (with-time-logging (format #f "~a registration" eval-id)
- (db-register-builds jobs eval-id)))
+ (with-time-logging
+ (format #f "evaluation ~a registration" eval-id)
+ (db-register-builds jobs eval-id)))
(log-message "evaluation ~a registered ~a new derivations"
eval-id (length derivations))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: Improve logging message.,
Mathieu Othacehe <=