mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-06 21:26:43 +02:00
Remove unnecessary condition
This commit is contained in:
@@ -319,16 +319,14 @@ class Logger implements LoggerInterface, ResettableInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
// once the record exist, send it to all handlers as long as the bubbling chain is not interrupted
|
// once the record exist, send it to all handlers as long as the bubbling chain is not interrupted
|
||||||
if (null !== $record) {
|
try {
|
||||||
try {
|
if (true === $handler->handle($record)) {
|
||||||
if (true === $handler->handle($record)) {
|
break;
|
||||||
break;
|
|
||||||
}
|
|
||||||
} catch (Throwable $e) {
|
|
||||||
$this->handleException($e, $record);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
} catch (Throwable $e) {
|
||||||
|
$this->handleException($e, $record);
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user