Automattic\WooCommerce\Admin

DeprecatedClassFacade::log_deprecation()private staticWC 1.0

Log a deprecation to the error log.

Method of the class: DeprecatedClassFacade{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = DeprecatedClassFacade::log_deprecation( $function );
$function(string) (required)
The name of the deprecated function being called.

DeprecatedClassFacade::log_deprecation() code WC 8.7.0

private static function log_deprecation( $function ) {
	error_log( // phpcs:ignore
		sprintf(
			'%1$s is deprecated since version %2$s! Use %3$s instead.',
			static::class . '::' . $function,
			static::$deprecated_in_version,
			static::$facade_over_classname . '::' . $function
		)
	);
}