Home
last modified time | relevance | path

Searched refs:isHandling (Results 1 – 14 of 14) sorted by relevance

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DSamplingHandler.php65 public function isHandling(array $record): bool function in Monolog\\Handler\\SamplingHandler
67 return $this->getHandler($record)->isHandling($record);
72 if ($this->isHandling($record) && mt_rand(1, $this->factor) === 1) {
H A DFilterHandler.php114 public function isHandling(array $record): bool function in Monolog\\Handler\\FilterHandler
124 if (!$this->isHandling($record)) {
145 if ($this->isHandling($record)) {
H A DHandlerWrapper.php49 public function isHandling(array $record): bool function in Monolog\\Handler\\HandlerWrapper
51 return $this->handler->isHandling($record);
H A DGroupHandler.php52 public function isHandling(array $record): bool function in Monolog\\Handler\\GroupHandler
55 if ($handler->isHandling($record)) {
H A DNoopHandler.php28 public function isHandling(array $record): bool function in Monolog\\Handler\\NoopHandler
H A DHandlerInterface.php39 public function isHandling(array $record): bool; function
H A DNullHandler.php48 public function isHandling(array $record): bool function in Monolog\\Handler\\NullHandler
H A DAbstractProcessingHandler.php37 if (!$this->isHandling($record)) {
H A DAbstractHandler.php51 public function isHandling(array $record): bool function in Monolog\\Handler\\AbstractHandler
H A DPsrHandler.php56 if (!$this->isHandling($record)) {
H A DAmqpHandler.php93 if (!$this->isHandling($record)) {
H A DFingersCrossedHandler.php110 public function isHandling(array $record): bool function in Monolog\\Handler\\FingersCrossedHandler
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/
H A DLogger.php299 if (!$handler->isHandling(['level' => $level])) {
450 public function isHandling(int $level): bool function in Monolog\\Logger
457 if ($handler->isHandling($record)) {
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md378 …* Break: HandlerInterface::isHandling now receives a partial record containing only a level key. T…
550 * Added Monolog\Logger::isHandling() to check if a handler will