You appear to be a bot. Output may be restricted
Description
Log a debug_backtrace() to the trace log file if tracing is active
Usage
bw_backtrace( $level );
Parameters
- $level
- ( integer ) optional default: BW_TRACE_ALWAYS – required level of tracing
Returns
voidSource
File name: oik-libs/libs/bwtrace.phpLines:
1 to 6 of 6
function bw_backtrace( $level=BW_TRACE_ALWAYS ) { global $bw_trace_on, $bw_trace_level; if ( $bw_trace_on && ( $level <= $bw_trace_level ) ) { bw_lazy_backtrace(); } }View on GitHub