Skip to content

Instantly share code, notes, and snippets.

@nitishn
Last active August 29, 2015 14:10
Show Gist options
  • Save nitishn/ecef53764d40dfbbfd11 to your computer and use it in GitHub Desktop.
Save nitishn/ecef53764d40dfbbfd11 to your computer and use it in GitHub Desktop.
public 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