Log full exception in cron instead of only the message

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
pull/7818/head
Morris Jobke 6 years ago
parent 33a6e265b2
commit e70edb33db
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68

@ -155,7 +155,7 @@ try {
exit();
} catch (Exception $ex) {
\OCP\Util::writeLog('cron', $ex->getMessage(), \OCP\Util::FATAL);
\OC::$server->getLogger()->logException($ex, ['app' => 'cron']);
} catch (Error $ex) {
\OCP\Util::writeLog('cron', $ex->getMessage(), \OCP\Util::FATAL);
\OC::$server->getLogger()->logException($ex, ['app' => 'cron']);
}

Loading…
Cancel
Save