Automattic\WooCommerce\Internal\EmailEditor

Logger::noticepublicWC 1.0

Adds notice level log message.

Method of the class: Logger{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Logger = new Logger();
$Logger->notice( $message, $context ): void;
$message(string) (required)
The log message.
$context(array)
The log context.
Default: array()

Logger::notice() code WC 10.3.6

public function notice( string $message, array $context = array() ): void {
	$this->log( WC_Log_Levels::NOTICE, $message, $context );
}