Log full exception in cron instead of only the message
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
869aa64d0d
commit
20f1523c0e
4
cron.php
4
cron.php
|
@ -155,7 +155,7 @@ try {
|
||||||
exit();
|
exit();
|
||||||
|
|
||||||
} catch (Exception $ex) {
|
} catch (Exception $ex) {
|
||||||
\OCP\Util::writeLog('cron', $ex->getMessage(), \OCP\Util::FATAL);
|
\OC::$server->getLogger()->logException($ex, ['app' => 'cron']);
|
||||||
} catch (Error $ex) {
|
} catch (Error $ex) {
|
||||||
\OCP\Util::writeLog('cron', $ex->getMessage(), \OCP\Util::FATAL);
|
\OC::$server->getLogger()->logException($ex, ['app' => 'cron']);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue