aboutsummaryrefslogtreecommitdiff
path: root/guix/status.scm
diff options
context:
space:
mode:
Diffstat (limited to 'guix/status.scm')
-rw-r--r--guix/status.scm22
1 files changed, 14 insertions, 8 deletions
diff --git a/guix/status.scm b/guix/status.scm
index b19f0199d1..c6956066fd 100644
--- a/guix/status.scm
+++ b/guix/status.scm
@@ -383,14 +383,20 @@ addition to build events."
actual hash: ~a~%"))
expected actual))
(('build-log line)
- ;; The daemon prefixes early messages coming with 'guix substitute' with
- ;; "substitute:". These are useful ("updating substitutes from URL"), so
- ;; let them through.
- (if (string-prefix? "substitute: " line)
- (begin
- (format port line)
- (force-output port))
- (print-log-line line)))
+ ;; TODO: Better distinguish daemon messages and build log lines.
+ (cond ((string-prefix? "substitute: " line)
+ ;; The daemon prefixes early messages coming with 'guix
+ ;; substitute' with "substitute:". These are useful ("updating
+ ;; substitutes from URL"), so let them through.
+ (format port line)
+ (force-output port))
+ ((string-prefix? "waiting for locks" line)
+ ;; This is when a derivation is already being built and we're just
+ ;; waiting for the build to complete.
+ (display (info (string-trim-right line)) port)
+ (newline))
+ (else
+ (print-log-line line))))
(_
event)))