Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

According to this post it was in the beta, but it's not in the release?

share|improve this question
11  
console.log is there in IE8, but the console object isn't created until you open DevTools. Therefore, a call to console.log may result in an error, for example if it occurs on page load before you have a chance to open the dev tools. The winning answer here explains it in more detail. – SDC Jan 28 at 15:31

11 Answers

up vote 119 down vote accepted

Even better for fallback is this:


   var alertFallback = true;
   if (typeof console === "undefined" || typeof console.log === "undefined") {
     console = {};
     if (alertFallback) {
         console.log = function(msg) {
              alert(msg);
         };
     } else {
         console.log = function() {};
     }
   }

share|improve this answer
Thanks, this helped me a lot, nicely done – martinjbates Oct 2 '12 at 8:45

console.log is only available after you have opened the Developer Tools (F12 to toggle it open and closed). Funny thing is that after you've opened it, you can close it, then still post to it via console.log calls, and those will be seen when you reopen it. I'm thinking that is a bug of sorts, and may be fixed, but we shall see.

I'll probably just use something like this:

function trace(s) {
  if ('console' in self && 'log' in console) console.log(s)
  // the line below you might want to comment out, so it dies silent
  // but nice for seeing when the console is available or not.
  else alert(s)
}

and even simpler:

function trace(s) {
  try { console.log(s) } catch (e) { alert(s) }
}
share|improve this answer
41  
That's the sillyst thing I've ever heard...typical MS. Thanks man! – leeand00 Mar 27 '09 at 15:51
No problem, yep it's quite typical. Those fun quirks we must learn to adjust and overcome! – Mister Lucky Mar 27 '09 at 15:54
6  
Either way you shouldn't be calling console.log blindly because $other-browsers mightn't have it and thus die with a JavaScript error. +1 – Kent Fredric Mar 27 '09 at 17:05
5  
you'll probably want to turn off traces before release anyhow though ;) – Kent Fredric Mar 27 '09 at 17:06
2  
It makes sense not to log without developer tools being open, but making it throw an exception if rather than failing silently is the real confusing decision here. – ehdv Aug 3 '10 at 20:50
show 7 more comments

It's worth noting that console.log in IE8 isn't a true Javascript function. It doesn't support the apply or call methods.

share|improve this answer
1  
+1 This is my precise error this morning. I'm trying to apply arguments to console.log and IE8 is hating me. – Bernhard Hofmann Mar 15 '12 at 9:49
[joke] Microsoft says "it's unsafe for us to let us people overwrite console object" :/ – Tom Roggero May 9 '12 at 5:52
1  
I've been using: console.log=Function.prototype.bind.call(console.log,console); to get around this. – Walkerneo Jan 12 at 1:06

I really like the approach posted by "orange80". It's elegant because you can set it once and forget it.

The other approaches require you to do something different (call something other than plain console.log() every time), which is just asking for trouble… I know that I'd eventually forget.

I've taken it a step further, by wrapping the code in a utility function that you can call once at the beginning of your javascript, anywhere as long as it's before any logging. (I'm installing this in my company's event data router product. It will help simplify the cross-browser design of its new admin interface.)

/**
 * Call once at beginning to ensure your app can safely call console.log() and
 * console.dir(), even on browsers that don't support it.  You may not get useful
 * logging on those browers, but at least you won't generate errors.
 * 
 * @param  alertFallback - if 'true', all logs become alerts, if necessary. 
 *   (not usually suitable for production)
 */
function fixConsole(alertFallback)
{    
    if (typeof console === "undefined")
    {
        console = {}; // define it if it doesn't exist already
    }
    if (typeof console.log === "undefined") 
    {
        if (alertFallback) { console.log = function(msg) { alert(msg); }; } 
        else { console.log = function() {}; }
    }
    if (typeof console.dir === "undefined") 
    {
        if (alertFallback) 
        { 
            // THIS COULD BE IMPROVED… maybe list all the object properties?
            console.dir = function(obj) { alert("DIR: "+obj); }; 
        }
        else { console.dir = function() {}; }
    }
}
share|improve this answer
Glad you like it :-) I use it for the exact reason you mention--b/c it's a good safety. It is just way too easy to put some "console.log" statements in your code for development and the forget to remove them later. At least if you do this, and put it at the top of every file where you use console.log, you will never have the site breaking in customers' browsers b/c they fail on console.log. Saved me before! Nice improvements, btw :-) – orange80 Dec 8 '11 at 7:03

Assuming you don't care about a fallback to alert, here's an even more concise way to workaround Internet Explorer's shortcomings:

var console=console||{"log":function(){}};
share|improve this answer
+1 Since I'm scoping my code out in an anonymous function, placing console into a variable like this is the best solution to me. Helps me to not interfere with any other console hooking going on in other libraries. – Codesleuth Aug 13 '12 at 9:43

If you get "undefined" to all of your console.log calls, that probably means you still have an old firebuglite loaded (firebug.js). It will override all the valid functions of IE8's console.log even though they do exist. This is what happened to me anyway.

Check for other code overriding the console object.

share|improve this answer
1  
Thanks for pointing this out! – Trey Piepmeier Dec 10 '10 at 21:49
if (window.console && 'function' === typeof window.console.log) {
    window.console.log(o);
}
share|improve this answer
Are you saying that window.console.log() might be available in IE8 even when console.log() isn't? – LarsH Jan 7 at 18:58
The problem here is that typeof window.console.log === "object", not "function" – Isochronous Apr 5 at 15:04

This is my take on the various answers. I wanted to actually see the logged messages, even if I did not have the IE console open when they were fired, so I push them into a console.messages array that I create. I also added a function console.dump to facilitate viewing the whole log.

This solutions also "handles" the other Console methods (which I believe all originate from the Firebug Console API)

Finally, this solution is in the form of an IIFE, so it does not pollute the global scope. The fallback function argument is defined at the bottom of the code.

I just drop it in my master JS file which is included on every page, and forget about it.

(function (fallback) {    

    fallback = fallback || function () { };

    // function to trap most of the console functions from the FireBug Console API
    var trap = function () {
        var args = Array.prototype.slice.call(arguments);        
        var message = args.join(' ');
        console.messages.push(message);
        fallback(message);
    };

    // redefine console
    if (typeof console === 'undefined') {
        console = {
            messages: [],
            dump: function() { return console.messages.join('\n'); },
            log: trap,
            debug: trap,
            info: trap,
            warn: trap,
            error: trap,
            assert: trap,
            clear: function() { console.messages.length = 0 },
            dir: trap,
            dirxml: trap,
            trace: trap,
            group: trap,
            groupCollapsed: trap,
            groupEnd: trap,
            time: trap,
            timeEnd: trap,
            timeStamp: trap,
            profile: trap,
            profileEnd: trap,
            count: trap,
            exception: trap,
            table: trap
        };
    }

})(null); // to define a fallback function, replace null with the name of the function (ex: alert)
share|improve this answer

It works in IE8. Open IE8's Developer Tools by hitting F12.

>>console.log('test')
LOG: test
share|improve this answer
5  
This issues "undefined" in my case. – acme Nov 25 '10 at 9:52
2  
As Mister Lucky pointed out: "console.log is only available after you have opened the Developer Tools (F12 to toggle it open and closed)." – The Silencer Nov 28 '11 at 14:03

firebug bookmarklet includes console.log

http://getfirebug.com/lite.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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