Closed
Description
Currently debug
output in the browser gets console.log()
'd.
However, browsers have a console.debug()
call (nonexistent in Node.js, of course) that would group all debug
output into its own category, perhaps making it easier for debugging in the browser when trying to look at regular application output.
Relevant lines:
https://github.com/visionmedia/debug/blob/master/src/browser.js#L112-L114
Thoughts?