Skip to content

Instantly share code, notes, and snippets.

@scofennell
Created January 28, 2019 15:00
Show Gist options
  • Save scofennell/7d792bcc866fcf789ae9bca91fe8fb5f to your computer and use it in GitHub Desktop.
Save scofennell/7d792bcc866fcf789ae9bca91fe8fb5f to your computer and use it in GitHub Desktop.
a wordpress function for logging
<?php
function debug( $bug ) {
ob_start();
var_dump( $bug );
$out = ob_get_clean();
error_log( $out );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment