Skip to content

Commit

Permalink
#81 - when no route is found for a request URI the resulting 404 is n…
Browse files Browse the repository at this point in the history
…ow logged at INFO rather than WARN level
  • Loading branch information
alphadevx committed Nov 14, 2016
1 parent a4a8e75 commit 40651de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Alpha/Controller/Front/FrontController.php
Expand Up @@ -659,7 +659,7 @@ public function process($request)
try {
$callback = $this->getRouteCallback($request->getURI());
} catch (IllegalArguementException $e) {
self::$logger->warn($e->getMessage());
self::$logger->info($e->getMessage());
throw new ResourceNotFoundException('Resource not found');
}

Expand Down

0 comments on commit 40651de

Please sign in to comment.