Skip to content

Instantly share code, notes, and snippets.

@joshweinstein
Created September 26, 2013 10:50
Show Gist options
  • Save joshweinstein/6712597 to your computer and use it in GitHub Desktop.
Save joshweinstein/6712597 to your computer and use it in GitHub Desktop.
if (!function_exists('write_log')) {
function write_log ( $log ) {
if ( true === WP_DEBUG ) {
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