status: Avoid "sucessfully built" messages when in quiet mode.
* guix/status.scm (print-build-event): Print "successfully built" messages only when PRINT-LOG? is true, like we do for 'substituter-started' events.
This commit is contained in:
parent
2510bd8756
commit
38a2f5eafb
@ -319,8 +319,9 @@ addition to build events."
|
||||
(format port (info (G_ "building ~a...")) drv)
|
||||
(newline port))
|
||||
(('build-succeeded drv . _)
|
||||
(format port (success (G_ "successfully built ~a")) drv)
|
||||
(newline port)
|
||||
(when (or print-log? (not (extended-build-trace-supported?)))
|
||||
(format port (success (G_ "successfully built ~a")) drv)
|
||||
(newline port))
|
||||
(match (build-status-building status)
|
||||
(() #t)
|
||||
(ongoing ;when max-jobs > 1
|
||||
|
Loading…
Reference in New Issue
Block a user