diff options
Diffstat (limited to 'lib/private/Log.php')
-rw-r--r-- | lib/private/Log.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Log.php b/lib/private/Log.php index d59d8b5ff00..a18b5db7d09 100644 --- a/lib/private/Log.php +++ b/lib/private/Log.php @@ -331,7 +331,7 @@ class Log implements ILogger { * @return void * @since 8.2.0 */ - public function logException($exception, array $context = []) { + public function logException(\Throwable $exception, array $context = []) { $level = Util::ERROR; if (isset($context['level'])) { $level = $context['level']; |