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
Called by
61 to 75 of 75
- OIK_libs::require_lib() – Require a library file
- oik_lib_admin_menu() – Implement "admin_menu" for oik-lib
- oik_lib_init() – Implement "init" for oik-lib
- OIK_Plugin_Update::require_lib() – Require a library
- oik_remote::oik_lazy_altapi_check() – Update site_transient_update_plugins for each of our plugins
- oik_remote::oik_lazy_themes_api() – Implement "themes_api" for our own themes
- oik_remote::oik_lazy_themes_api_result() – Implement "themes_api_result" filter to add our own themes
- OIK_Theme_Update::require_lib() – Require a library
- OIK_Weight_Zone_Shipping::set_shippingrate_title() – Set the title for this shipping rate
- Tests_includes_bwtrace::backtrace() – Debug backtraces the incomplete object
- _delete_all_data() – Disabled
- _delete_all_posts() – Disabled
- _manually_load_plugin() – Self load the plugin’s main .php file
- _oiksc_create_shortcode() – Create an oik_shortcode programmatically
- _set_default_permalink_structure_for_tests() – Set a permalink structure.
Invoked by
Calls
1 to 1 of 1
