X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/e3159b228e66bd345e33efcda84af064217f4eb9..fdebfd5d0c558cb156849b01c9c9268b29dc443b:/scripts/task_server.pl diff --git a/scripts/task_server.pl b/scripts/task_server.pl index cfdd8668b..07cc53e89 100755 --- a/scripts/task_server.pl +++ b/scripts/task_server.pl @@ -246,6 +246,10 @@ sub run_once_for_all_clients { my $history = $job->run; + debug(" Executed job " . $job->package_name . + "; result: " . (!$history ? "no return value" : $history->has_failed ? "failed" : "succeeded") . + ($history && $history->has_failed ? "; error: " . $history->error_col : "")); + notify_on_failure(history => $history) if $history && $history->has_failed; }