WC_Logger::notice()
Adds a notice level message.
Normal but significant events.
Method of the class: WC_Logger{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WC_Logger = new WC_Logger(); $WC_Logger->notice( $message, $context );
- $message(string) (required)
- Message to log.
- $context(array)
- Log context.
Default: array()
Notes
- See: WC_Logger::log
WC_Logger::notice() WC Logger::notice code WC 9.4.2
public function notice( $message, $context = array() ) { $this->log( WC_Log_Levels::NOTICE, $message, $context ); }