Skip to content

Commit

Permalink
Fix incorrect logger method name.
Browse files Browse the repository at this point in the history
Refs #9689
  • Loading branch information
markstory committed Nov 2, 2016
1 parent ca076fc commit 5684659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/ResponseEmitter.php
Expand Up @@ -47,7 +47,7 @@ public function emit(ResponseInterface $response, $maxBufferLength = 8192)
if (Configure::read('debug')) {
trigger_error($message, E_USER_WARNING);
} else {
Log::warn($message);
Log::warning($message);
}
}

Expand Down

0 comments on commit 5684659

Please sign in to comment.