Merge pull request #9958 from nextcloud/backport/7818/stable13

[stable13] Log full exception in cron instead of only the message
This commit is contained in:
John Molakvoæ 2018-06-22 07:37:11 +02:00 committed by GitHub
commit 64b3614182
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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']);
}