WC_Logger::warning()
Adds a warning level message.
Exceptional occurrences that are not errors.
Example: Use of deprecated APIs, poor use of an API, undesirable things that are not necessarily wrong.
Method of the class: WC_Logger{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WC_Logger = new WC_Logger(); $WC_Logger->warning( $message, $context );
- $message(string) (required)
- Message to log.
- $context(array)
- Log context.
Default: array()
Notes
- See: WC_Logger::log
WC_Logger::warning() WC Logger::warning code WC 9.4.2
public function warning( $message, $context = array() ) { $this->log( WC_Log_Levels::WARNING, $message, $context ); }