diff options
-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); } |