diff --git a/src/Symfony/Bundle/FrameworkBundle/Controller/ControllerNameParser.php b/src/Symfony/Bundle/FrameworkBundle/Controller/ControllerNameParser.php index 86dd9cea24..9eb7e78b71 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Controller/ControllerNameParser.php +++ b/src/Symfony/Bundle/FrameworkBundle/Controller/ControllerNameParser.php @@ -76,16 +76,16 @@ class ControllerNameParser private function handleControllerNotFoundException($bundle, $controller, array $logs) { - if (null !== $this->logger) { - foreach ($logs as $log) { - $this->logger->info($log); - } - } - // just one log, return it as the exception if (1 == count($logs)) { throw new \InvalidArgumentException($logs[0]); } + + if (null !== $this->logger) { + foreach ($logs as $log) { + $this->logger->error($log); + } + } // many logs, use a message that mentions each searched bundle $names = array();