Monolog\Handler\AbstractHandler::getLevel PHP Метод

getLevel() публичный Метод

Gets minimum logging level at which this handler will be triggered.
public getLevel ( ) : integer
Результат integer
    public function getLevel()
    {
        return $this->level;
    }

Usage Example

Пример #1
0
 public function __construct(AbstractHandler $handler, \Bubble\CatchBubble $catchBubble)
 {
     parent::__construct($handler->getLevel(), $handler->getBubble());
     $this->handler = $handler;
     $this->catchBubble = $catchBubble;
 }