WC_Log_Handler_Email::handle()
Handle a log entry.
Метод класса: WC_Log_Handler_Email{}
Хуков нет.
Возвращает
true|false
. False if value was not handled and true if value was handled.
Использование
$WC_Log_Handler_Email = new WC_Log_Handler_Email(); $WC_Log_Handler_Email->handle( $timestamp, $level, $message, $context );
- $timestamp(int) (обязательный)
- Log timestamp.
- $level(строка) (обязательный)
- emergency|alert|critical|error|warning|notice|info|debug.
- $message(строка) (обязательный)
- Log message.
- $context(массив) (обязательный)
- Additional information for log handlers.
Код WC_Log_Handler_Email::handle() WC Log Handler Email::handle WC 9.4.2
public function handle( $timestamp, $level, $message, $context ) { if ( $this->should_handle( $level ) ) { $this->add_log( $timestamp, $level, $message, $context ); return true; } return false; }