Kraken\Log\LoggerWrapper::__construct PHP Method

__construct() public method

public __construct ( string $name, array $handlers = [], array $processors = [] )
$name string The logging channel
$handlers array Optional stack of handlers, the first one in the array is called first, etc.
$processors array Optional array of processors
    public function __construct($name, array $handlers = [], array $processors = [])
    {
        /**
         * This is a fix for Pthreads, since that extension does not copy static variables accross threads
         */
        static::$levels = [self::DEBUG => 'DEBUG', self::INFO => 'INFO', self::NOTICE => 'NOTICE', self::WARNING => 'WARNING', self::ERROR => 'ERROR', self::CRITICAL => 'CRITICAL', self::ALERT => 'ALERT', self::EMERGENCY => 'EMERGENCY'];
        parent::__construct($name, $handlers, $processors);
    }
LoggerWrapper