Are there any logging frameworks for JavaScript?
|
1
|
|
|
|
|
|
Try log4js...
|
||
|
|
|
|
log4javascript is in my opinion the best cross-browser JavaScript logging library. But then I would say that, since I wrote it. |
||
|
|
|
|
For logging I use almost all the time the Firebug logging API since it's my primary debugging tool. I wrap the console.log, warn, debug, error and other functions in the following way, to avoid breaking code on other browsers:
Give a look to the Firebug's Console API here.
|
||
|
|
|
Just in case you need something simpler than Log4JS, take a look of BlackBird, it's a Javascript Logging utility very simple: Blackbird |
||
|
|
Yes! And if you had bothered to Google, you would have found examples such as Log4JS, a port of Log4J, etc. |
||
|
|

