phpbb\log\log::is_enabled PHP Method

is_enabled() public method

{@inheritDoc}
public is_enabled ( $type = '' )
    public function is_enabled($type = '')
    {
        if ($type == '' || $type == 'all') {
            return !isset($this->disabled_types['all']);
        }
        return !isset($this->disabled_types[$type]) && !isset($this->disabled_types['all']);
    }