define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
define( 'SCRIPT_DEBUG', true );
define( 'SAVEQUERIES', true );
define( 'QM_HIDE_SELF', true );
/**
* Simple debug trace to wp-content/debug.log
* @usage _log( $var );
*/
if ( ! function_exists( '_log' ) ) {
function _log( $log ) {
if ( true !== WP_DEBUG ) {
return;
}
if ( is_array( $log ) || is_object( $log ) ) {
error_log( print_r( $log, true ) );
} else {
error_log( $log );
}
}
}