Skip to content

Instantly share code, notes, and snippets.

@r-a-y
Created March 31, 2015 16:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-a-y/12daf886b98293b357e7 to your computer and use it in GitHub Desktop.
Save r-a-y/12daf886b98293b357e7 to your computer and use it in GitHub Desktop.
Debug log function for WordPress. Put this in /wp-content/mu-plugins/.
<?php
function ray_log( $message ) {
if ( empty( $message ) )
return;
error_log( '[' . gmdate( 'd-M-Y H:i:s' ) . '] ' . $message . "\n", 3, WP_CONTENT_DIR . '/ray.log' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment