WC_Gateway_Paypal::log()public staticWC 1.0

Logging method.

Method of the class: WC_Gateway_Paypal{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WC_Gateway_Paypal::log( $message, $level );
$message(string) (required)
Log message.
$level(string)
Possible values: emergency|alert|critical|error|warning|notice|info|debug.
Default: 'info'

WC_Gateway_Paypal::log() code WC 8.7.0

public static function log( $message, $level = 'info' ) {
	if ( self::$log_enabled ) {
		if ( empty( self::$log ) ) {
			self::$log = wc_get_logger();
		}
		self::$log->log( $level, $message, array( 'source' => 'paypal' ) );
	}
}