1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-10 07:06:40 +02:00

Merge pull request #242 from creativemarket/ishandling

Fixes isHandling() result not being acknowledged in handle() in AbstractProcessingHandler
This commit is contained in:
Jordi Boggiano
2013-10-02 07:44:06 -07:00

View File

@@ -26,7 +26,7 @@ abstract class AbstractProcessingHandler extends AbstractHandler
*/
public function handle(array $record)
{
if ($record['level'] < $this->level) {
if (!$this->isHandling($record)) {
return false;
}