Automattic\WooCommerce\Utilities

LoggingUtil::get_level_threshold()public staticWC 1.0

Determine the current value of the level_threshold setting.

Method of the class: LoggingUtil{}

No Hooks.

Return

String.

Usage

$result = LoggingUtil::get_level_threshold(): string;

LoggingUtil::get_level_threshold() code WC 9.4.2

public static function get_level_threshold(): string {
	return wc_get_container()->get( Settings::class )->get_level_threshold();
}