Skip to content

Commit

Permalink
Update MonologMiddleware.php
Browse files Browse the repository at this point in the history
  • Loading branch information
orasik authored Mar 16, 2017
1 parent 50ba984 commit dea0619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MonologMiddleware/MonologMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct(Logger $logger, loggableProvider $loggableProvider)
*/
public function __invoke(ServerRequestInterface $request, ResponseInterface $response, callable $next = null)
{
$nextResponse = $next($request, $response)
$nextResponse = $next($request, $response);
$level = $this->getLogLevel($response->getStatusCode());

$this->log($level, $request, $nextResponse);
Expand Down

0 comments on commit dea0619

Please sign in to comment.