Skip to content

Instantly share code, notes, and snippets.

@dotherightthing
Last active August 15, 2019 10:01
Show Gist options
  • Save dotherightthing/e811bf53be24340ec8f6ba66414aa023 to your computer and use it in GitHub Desktop.
Save dotherightthing/e811bf53be24340ec8f6ba66414aa023 to your computer and use it in GitHub Desktop.
[Writing to the WordPress debug.log] Sending your own output to the WordPress debug log. #wordpress
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