Pimcore\Log\Handler\ApplicationLoggerDb::__construct PHP Method

__construct() public method

ApplicationLoggerDb constructor.
public __construct ( string $level = "debug", boolean | true $bubble = true )
$level string
$bubble boolean | true
    public function __construct($level = "debug", $bubble = true)
    {
        // Zend_Log compatibility
        $zendLoggerPsr3Mapping = Logger::getZendLoggerPsr3Mapping();
        if (isset($zendLoggerPsr3Mapping[$level])) {
            $level = $zendLoggerPsr3Mapping[$level];
        }
        parent::__construct($level, $bubble);
    }