Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
refs #12093 fix validation exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
puzakov committed Feb 4, 2016
1 parent 4e161bd commit e096ea4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EventListener/ExceptionListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function onKernelException(GetResponseForExceptionEvent $event)
} else {
switch (substr($code, 0, 1)) {
case '4':
$message = 'Input Error';
$message = $exception->getMessage();
$this->logger->notice("Input error [logref $logRef]: " . $exception->__toString());
break;
case '5':
Expand Down

0 comments on commit e096ea4

Please sign in to comment.