vote up 4 vote down star
1

How can I print a message to the error console, preferably including a variable? e.g., something like

print('x=%d', x);
flag

Which console are you talking about. Browser console or JavaScript framework specific console? – spoon16 Oct 2 '08 at 20:27

4 Answers

vote up 5 vote down check

Install Firebug and then you can use console.log(...) and console.debug(...), etc (see the docs for more).

link|flag
Unfortunately, this will cause an error in IE though. So you have to comment it out before deployment, or include a library that traps it. getfirebug.com/lite.html – Shermozle Oct 3 '08 at 3:31
@Dan: The WebKit Web Inspector also supports the FireBug console API – olliej Oct 3 '08 at 3:45
why is this the accepted answer? he didn't ask how to write to the firebug console, he asked how to write to the error console. not being a dick or anything, just pointing it out. – matt lohkamp Oct 3 '08 at 10:25
Oh come on. If you're a professional developer you'll know full well that answering questions like is is as much about guessing what the person REALLY wants than about answering their question fully. Not that I'm saying "I'm sooo good I know what you're thinking!", I simply happened to guess right. – Dan Oct 4 '08 at 3:33
vote up 2 vote down

If you are using Firebug and need to support IE, Safari or Opera as well, Firebug Lite adds console.log() support to these browsers.

link|flag
vote up 0 vote down

The WebKit Web Inspector also supports FireBug's console API (just a minor addition to Dan's answer above)

link|flag
vote up 2 vote down

One good way to do this that works cross-browser is outlined in http://www.sitepoint.com/blogs/2008/08/22/debugging-javascript-throw-away-your-alerts/

link|flag
throw() is a great suggestion - this should be the chosen answer. – matt lohkamp Oct 3 '08 at 10:24

Your Answer

Get an OpenID
or

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