Merge pull request #23083 from nextcloud/bugfix/extend-php-error-logging
Generate exception to log on php errors
This commit is contained in:
commit
18411b8da3
|
@ -88,12 +88,14 @@ class ErrorHandler {
|
|||
return;
|
||||
}
|
||||
$msg = $message . ' at ' . $file . '#' . $line;
|
||||
self::$logger->error(self::removePassword($msg), ['app' => 'PHP']);
|
||||
$e = new \Error(self::removePassword($msg));
|
||||
self::$logger->logException($e, ['app' => 'PHP']);
|
||||
}
|
||||
|
||||
//Recoverable handler which catch all errors, warnings and notices
|
||||
public static function onAll($number, $message, $file, $line) {
|
||||
$msg = $message . ' at ' . $file . '#' . $line;
|
||||
self::$logger->debug(self::removePassword($msg), ['app' => 'PHP']);
|
||||
$e = new \Error(self::removePassword($msg));
|
||||
self::$logger->logException($e, ['app' => 'PHP', 'level' => 0]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue