diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-04-02 15:05:12 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-04-02 17:37:29 +0200 |
commit | d81070ce981d7f551fc3c70fbadcf420eb0ef4ae (patch) | |
tree | 53961566b4e300b88c2d098c3b4ff73f411637c8 /solenv | |
parent | 08127638744c66dc5feab5808ef51ce54f9155e1 (diff) |
State the name of the log file that contains an error
...to make it easier to debug a failing build
Change-Id: Ic936a6e6026db4208f58e19fb27e2c2d6e4adfec
Reviewed-on: https://gerrit.libreoffice.org/70138
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/modules/installer/worker.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/worker.pm b/solenv/bin/modules/installer/worker.pm index 3755b99ecdf8..fabac8ff3f46 100644 --- a/solenv/bin/modules/installer/worker.pm +++ b/solenv/bin/modules/installer/worker.pm @@ -162,7 +162,7 @@ sub analyze_and_save_logfile # This is important, to get an error code "-1", if an error was found in the log file, # that did not break the packaging process - if ( ! $is_success) { installer::exiter::exit_program("ERROR: Found an error in the logfile. Packaging failed.", "analyze_and_save_logfile"); } + if ( ! $is_success) { installer::exiter::exit_program("ERROR: Found an error in the logfile " . $loggingdir . $installer::globals::logfilename . ". Packaging failed.", "analyze_and_save_logfile"); } return ($is_success, $finalinstalldir); } |