2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/guix-cuirass.git synced 2023-12-14 06:03:04 +01:00

Improve build event logging.

* src/cuirass/base.scm (handle-build-event): Add 'build-failed'; shorten
message for 'build-remote'.
This commit is contained in:
Ludovic Courtès 2018-01-22 14:50:43 +01:00
parent 47cd2d7470
commit 0d3225a08b

View file

@ -253,9 +253,11 @@ and so on. "
(('build-started drv _ ...) (('build-started drv _ ...)
(log-message "build started: '~a'" drv)) (log-message "build started: '~a'" drv))
(('build-remote drv host _ ...) (('build-remote drv host _ ...)
(log-message "build of '~a' offloaded to '~a'" drv host)) (log-message "'~a' offloaded to '~a'" drv host))
(('build-succeeded drv _ ...) (('build-succeeded drv _ ...)
(log-message "build succeeded: '~a'" drv)) (log-message "build succeeded: '~a'" drv))
(('build-failed drv _ ...)
(log-message "build failed: '~a'" drv))
(('substituter-started item _ ...) (('substituter-started item _ ...)
(log-message "substituter started: '~a'" item)) (log-message "substituter started: '~a'" item))
(('substituter-succeeded item _ ...) (('substituter-succeeded item _ ...)