Skip to content

Instantly share code, notes, and snippets.

@autocircled
Created November 27, 2024 11:11
Show Gist options
  • Save autocircled/1e1840483477dbe9aa590607d34ea4c3 to your computer and use it in GitHub Desktop.
Save autocircled/1e1840483477dbe9aa590607d34ea4c3 to your computer and use it in GitHub Desktop.
function qw( $data ) {
if ( true === WP_DEBUG ) {
$backtrace = debug_backtrace();
$backtrace = array_shift( $backtrace );
$output['backtrace'] = $backtrace['file'] . ':' . $backtrace['line'];
$output['data'] = $data;
error_log( print_r( $output, true ) );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment