WC_Logger::should_handle() protected WC 1.0
Determine whether to handle or ignore log.
{} Это метод класса: WC_Logger{}
Хуков нет.
Возвращает
true/false. True if the log should be handled.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->should_handle( $level );
- $level(строка) (обязательный)
- emergency|alert|critical|error|warning|notice|info|debug.
Код WC_Logger::should_handle() WC Logger::should handle WC 5.0.0
protected function should_handle( $level ) {
if ( null === $this->threshold ) {
return true;
}
return $this->threshold <= WC_Log_Levels::get_level_severity( $level );
}