Skip to content

Instantly share code, notes, and snippets.

@joshuaadrian
Last active August 29, 2015 14:15
Show Gist options
  • Save joshuaadrian/fd3c3a21717246acacc1 to your computer and use it in GitHub Desktop.
Save joshuaadrian/fd3c3a21717246acacc1 to your computer and use it in GitHub Desktop.
// LOGGING FUNCTION
if ( !function_exists('_log') ) {
function _log( $message ) {
if ( WP_DEBUG === true ){
if ( is_array( $message ) || is_object( $message ) ) {
error_log( print_r( $message, true ) );
} else {
error_log( $message );
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment