Skip to content

Instantly share code, notes, and snippets.

@subharanjanm
Last active September 24, 2015 09:56
Show Gist options
  • Save subharanjanm/93b464027670cd73bdfe to your computer and use it in GitHub Desktop.
Save subharanjanm/93b464027670cd73bdfe to your computer and use it in GitHub Desktop.
if ( !function_exists( 'write_log' ) ) {
function write_log ( $log ) {
if ( true === WP_DEBUG ) {
error_log('---------------------------------');
if ( is_array( $log ) || is_object( $log ) ) {
error_log( print_r( $log, true ) );
} else {
error_log( $log );
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment