acf_dev_log()ACF 5.7.4

acf_dev_log

Used to log variables only if ACF_DEV is defined

No Hooks.

Returns

void. Nothing (null).

Usage

acf_dev_log();

Changelog

Since 5.7.4 Introduced.

acf_dev_log() code ACF 6.8.8

function acf_dev_log() {
	if ( defined( 'ACF_DEV' ) && ACF_DEV ) {
		call_user_func_array( 'acf_log', func_get_args() );
	}
}