vote up 0 vote down star
1

Are there any logging frameworks for JavaScript?

flag

5 Answers

vote up 4 vote down check

Try log4js...

Log4js is a logging framework for JavaScript. The main goal is to have a robust and solid logging API which is very simmilar to the Java logging framework Log4j.

link|flag
vote up 1 vote down

log4javascript is in my opinion the best cross-browser JavaScript logging library.

But then I would say that, since I wrote it.

link|flag
vote up 4 vote down

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:

function log (msg) {
  if( window.console && console.log ){
    console.log(msg);
  }
}

Give a look to the Firebug's Console API here.

logging screenshot

link|flag
Hmmm...I like Firebug, but logging framework, really? – Supertux Sep 14 at 23:44
vote up 2 vote down

Just in case you need something simpler than Log4JS, take a look of BlackBird, it's a Javascript Logging utility very simple: Blackbird

link|flag
+1 Blackbird looks cool, not heard of that – Supertux Sep 14 at 23:44
Blackbird is pretty, but quite basic. – Tim Down Nov 7 at 16:43
vote up 0 vote down

Yes! And if you had bothered to Google, you would have found examples such as Log4JS, a port of Log4J, etc.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.