Automattic\WooCommerce\EmailEditor\Engine\Logger
Email_Editor_Logger::notice
Adds notice level log message.
Method of the class: Email_Editor_Logger{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Email_Editor_Logger = new Email_Editor_Logger(); $Email_Editor_Logger->notice( $message, $context ): void;
- $message(string) (required)
- The log message.
- $context(array)
- The log context.
Default:array()
Email_Editor_Logger::notice() Email Editor Logger::notice code WC 10.5.0
public function notice( string $message, array $context = array() ): void {
$this->logger->notice( $message, $context );
}