This plugin is outdated and might not be supported anymore
DoDebug

DoDebug

By WPDO
Details
View on WordPress

This plugin can log the breakpoints into the file.

  • To check the log, ssh to server, run tail -f /your_wordpress_path/wp-content/debug.log to watch the output.

API

  • To log, use defined( 'debug' ) && debug( 'your content to log' ); in your plugin/theme code.

  • To log only in advanced debug level, use defined( 'debug' ) && debug2( 'your content to log' );.

  • To log with backtrace depth = 4, use defined( 'debug' ) && debug( 'your content to log', 4 );.

  • To append one variable (usually an array), use defined( 'debug' ) && debug( 'your content to log', $var_to_check );.

Details

Plugin code:
dodebug
Plugin version:
1.1
Author:
Outdated:
Yes
WP version:
4.0 or higher
PHP version:
or higher
Test up to WP version:
5.3.18
Total installations:
0
Last updated:
2020-09-21
Rating:
Times rated:
0
debug-tool