woocommerce_logging_class filter-hookWC 1.0

Usage

add_filter( 'woocommerce_logging_class', 'wp_kama_woocommerce_logging_class_filter' );

/**
 * Function for `woocommerce_logging_class` filter-hook.
 * 
 * @param  $string 
 *
 * @return 
 */
function wp_kama_woocommerce_logging_class_filter( $string ){

	// filter...
	return $string;
}
$string
-

Where the hook is called

wc_get_logger()
woocommerce_logging_class
woocommerce/includes/wc-core-functions.php 1987
$class = apply_filters( 'woocommerce_logging_class', 'WC_Logger' );

Where the hook is used in WooCommerce

Usage not found.