Skip to content

Log errors, info or messages in the Google Chrome and Firefox Web Console.

License

Notifications You must be signed in to change notification settings

displaynone/wordpress-chrome-debug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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');

About

Log errors, info or messages in the Google Chrome and Firefox Web Console.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages