GNOME Bugzilla – Bug 712785
cerbero: Log step output in individual log files
Last modified: 2014-06-22 15:58:39 UTC
Currently the output of every recipe step (fetch, extract, compile,...) is outputted on stdout. While this is useful for debugging/verifying all steps are being executed properly, they have the following downsides: * too much information (you don't really know where exactly you are in the full process) * if you want to log that information you need to log the full output * you might want to only view such details later or only if something failed The following patch solves this by logging each recipe step to log files.
Created attachment 260407 [details] [review] build: Log step output to individual files Instead of outputting everything to stdout. Files are located in ~/cerbero/logs/<platform>-<arch>/<recipe>-<step>.log When a step fails, the output is dumped on stdout before closing, so that users can still debug the issue.
Was pushed