Skip to content

Commit 6b139fb

Browse files
Merge branch '3.0'
* 3.0: [DI] Fix internal caching in AutowirePass [PropertyInfo] Remove useless return statement [Console] use ANSI escape sequences in ProgressBar overwrite method [HttpKernel] Fix wrong number of arguments in call of ExceptionListener::logException() Replace iconv_*() uses by mb_*(), add mbstring polyfill when required [DependencyInjection] Remove YAML check in CrossCheckTest [Process] Consistently use getProcess() in tests [LDAP] Free the search result after a search to free memory [DependencyInjection] fix phpDoc Conflicts: src/Symfony/Component/Ldap/LdapClient.php
2 parents 7f66267 + 653ab4b commit 6b139fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

EventListener/ExceptionListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function onKernelException(GetResponseForExceptionEvent $event)
4949
try {
5050
$response = $event->getKernel()->handle($request, HttpKernelInterface::SUB_REQUEST, false);
5151
} catch (\Exception $e) {
52-
$this->logException($e, sprintf('Exception thrown when handling an exception (%s: %s at %s line %s)', get_class($e), $e->getMessage(), $e->getFile(), $e->getLine()), false);
52+
$this->logException($e, sprintf('Exception thrown when handling an exception (%s: %s at %s line %s)', get_class($e), $e->getMessage(), $e->getFile(), $e->getLine()));
5353

5454
$wrapper = $e;
5555

0 commit comments

Comments
 (0)