Lines:
1 to 33 of 33
<?php // (C) Copyright Bobbing Wide 2011-2015 if ( !defined( "BWTRACE_INCLUDED" ) ) { define( "BWTRACE_INCLUDED", true ); /** * Assume tracing is off */ if ( !isset( $bw_trace_on )) { $bw_trace_on = false; } /* function bw_trace() – Log a simple trace record to the trace log file if tracing is active */ if ( !function_exists( "bw_trace2" ) ) { /* function bw_trace2() – Trace $value to the trace log file if tracing is active */ } if ( !function_exists( "bw_backtrace" ) ) { /* function bw_backtrace() – Log a debug_backtrace() to the trace log file if tracing is active */ } /** * Start up tracing from the wp-config file if required */ if ( defined( 'BW_TRACE_CONFIG_STARTUP' ) && BW_TRACE_CONFIG_STARTUP == true ) { require_once( dirname( __FILE__ ) . '/bwtrace_boot.php' ); } } /* end !defined */View on GitHub View on Trac
Called by
Invoked by
Calls
1 to 1 of 1