Skip to content

Commit

Permalink
Add trace_plugin_load option to control display of Plugin load times …
Browse files Browse the repository at this point in the history
…report #87
  • Loading branch information
bobbingwide committed Dec 31, 2021
1 parent 4d5f579 commit e5b1b8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion admin/oik-bwtrace.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,9 @@ function oik_action_options() {
settings_fields('bw_action_options_options');

bw_checkbox_arr( "bw_action_options", __( "Count action hooks and filters", "oik-bwtrace" ), $options, 'count' );
bw_checkbox_arr( 'bw_action_options', __( 'Time plugin loading', 'oik-bwtrace'), $options, 'trace_plugin_load' );
bw_checkbox_arr( "bw_action_options", __( "Trace deprecated messages", "oik-bwtrace" ), $options, 'trace_deprecated' );
bw_checkbox_arr( "bw_action_options", __( "Trace Error, Warning and Notice messages", "oik-bwtrace" ), $options, 'trace_errors' );
bw_checkbox_arr( "bw_action_options", __( "Trace Error, Warning and Notice messages", "oik-bwtrace" ), $options, 'trace_errors' );
bw_checkbox_arr( "bw_action_options", __( "Trace 'wp' action", "oik-bwtrace" ), $options, 'trace_wp_action' );
bw_checkbox_arr( "bw_action_options", __( "Trace 'wp' global wp_rewrite ", "oik-bwtrace" ), $options, 'trace_wp_rewrite' );
bw_checkbox_arr( 'bw_action_options', __( 'Purge trace file if no errors', 'oik-btrace'), $options, 'trace_purge_if_no_errors' );
Expand Down

0 comments on commit e5b1b8b

Please sign in to comment.