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)
|
(format port (info (G_ "building ~a...")) drv)
|
||||||
(newline port))
|
(newline port))
|
||||||
(('build-succeeded drv . _)
|
(('build-succeeded drv . _)
|
||||||
(format port (success (G_ "successfully built ~a")) drv)
|
(when (or print-log? (not (extended-build-trace-supported?)))
|
||||||
(newline port)
|
(format port (success (G_ "successfully built ~a")) drv)
|
||||||
|
(newline port))
|
||||||
(match (build-status-building status)
|
(match (build-status-building status)
|
||||||
(() #t)
|
(() #t)
|
||||||
(ongoing ;when max-jobs > 1
|
(ongoing ;when max-jobs > 1
|
||||||
|
|
Loading…
Reference in New Issue