diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-09-29 16:39:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-29 16:39:00 +0200 |
commit | 75bc0bc105559b142c3ef92f8f108c360f402142 (patch) | |
tree | bd326857ecebda00702b651ae6f76b96da4b1137 | |
parent | 0d4ea5fc63695361dc07100f3317cf2d8390fb76 (diff) | |
parent | 4fec3d09a08f1116694d2f5e954ba06fb037188d (diff) | |
download | nextcloud-server-75bc0bc105559b142c3ef92f8f108c360f402142.tar.gz nextcloud-server-75bc0bc105559b142c3ef92f8f108c360f402142.zip |
Merge pull request #23093 from nextcloud/backport/23083/stable19
[stable19] Generate exception to log on php errors
-rw-r--r-- | lib/private/Log/ErrorHandler.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/private/Log/ErrorHandler.php b/lib/private/Log/ErrorHandler.php index d37af8212a0..e87da0b5d83 100644 --- a/lib/private/Log/ErrorHandler.php +++ b/lib/private/Log/ErrorHandler.php @@ -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]); } } |