Skip to content

Commit 2e2e513

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: [Console] use ANSI escape sequences in ProgressBar overwrite method [HttpKernel] Fix wrong number of arguments in call of ExceptionListener::logException() [DependencyInjection] Remove YAML check in CrossCheckTest [Process] Consistently use getProcess() in tests [DependencyInjection] fix phpDoc
2 parents f73db91 + d2370ed commit 2e2e513

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)