Web Console Debugger
Log errors, info or messages in the Google Chrome and Firefox Web Console.
by Luis Sacristán · github.com/displaynone/wordpress-chrome-debug
★ 0stars
0forks
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/displaynone/wordpress-chrome-debug/archive/refs/heads/master.zipReadme
WordPress Web Console Debugger
Log errors, info or messages in the Google Chrome and Firefox Web Console. It uses chromephp library by Craig Campbell
Instalation
- Download, install and active the plugin
- Use in any script you want
Usage
// Normal debug
_debug($var, 'log');
// Info message
_debug($var, 'info');
// Warn message
_debug($var, 'warn');
// Error message
_debug($var, 'error');
// Message in table format
_debug(
array(
'idx_1' => 'val_1',
'idx_2' => 'val_2',
'idx_3' => 'val_3'
), 'table');
// Groups
_debug('New group', 'group');
_debug($var1, 'info');
_debug($var2, 'error');
// ...
_debug('', 'groupEnd');