up vote 120 down vote favorite
40
share [g+] share [fb]

Does anyone know how to print debug messages in the Google Chrome Javascript Console?

Please note that the Javascript Console is not the same as the Javascript Debugger, they have different syntaxes AFAIK, so the print command in Javascript Debugger will not work here. In the Javascript Console, print() will send the parameter to the printer.

There is a related question already on SO, but it does not solve my problem: http://stackoverflow.com/questions/45965/how-do-i-use-the-javascript-console-in-google-chrome

link|improve this question

feedback

7 Answers

up vote 172 down vote accepted

Executing following code from the browser address bar:

javascript: console.log(2);

successfully prints message to the "JavaScript Console" in Google Chrome.

link|improve this answer
Thanks, that's exactly what I needed. – DrJokepu Oct 20 '08 at 13:17
1  
Just realized, console.log() is awesome for js debugging ... I often forget using it in practice. – Ish Kumar Jul 29 '11 at 19:46
feedback

Improving on Andru's idea, you can write a script which creates console functions if they don't exist:

if (!window.console) console = {};
console.log = console.log || function(){};
console.warn = console.warn || function(){};
console.error = console.error || function(){};
console.info = console.info || function(){};

Then, use any of the following:

console.log(...);
console.error(...);
console.info(...);
console.warn(...);

These functions will log different types of items (which can be filtered based on log, info, error or warn) and will not cause errors when console is not available. These functions will work in Firebug and Chrome consoles.

link|improve this answer
this is great! thanks a lot :D – Agos May 3 '10 at 11:11
Thanks for that. Wouldn't the code be tighter if you ran the "if" once, like if (!window.console) { and then put everything inside brackets? Right now you're evaluating the same stuff four times. – Yar Sep 19 '11 at 16:33
No, b/c just having window.console doesn't guarantee that you'll have a window.console.log or .warn &c – Paul Sep 21 '11 at 4:45
Just be careful because if this script is loaded with the page and the console window is not open, it will create the 'dummy' console which can prevent the real console from working if you open the console after the page is loaded. (at least this is the case in older versions of firefox/firebug and chrome) – cwd Oct 11 '11 at 12:38
feedback

Just a quick warning - if you want to test in IE without removing all console.log()'s, you'll need to use FireBug Lite (http://getfirebug.com/lite.html) or you'll get some not particularly friendly errors.

(or create your own console.log() which just returns false)

link|improve this answer
feedback

Here is a short script which checks if console is available. If it is not it tries to load firebug and if firebug is not available it loads firebugLite. Now you can use console.log in any browser. Enjoy!

if (!window['console']) {
    // Enable console
    if (window['loadFirebugConsole']) {
        window.loadFirebugConsole();
    } else {
        // No console, use Firebug Lite
        var firebugLite = function(F,i,r,e,b,u,g,L,I,T,E){if(F.getElementById(b))return;E=F[i+'NS']&&F.documentElement.namespaceURI;E=E?F[i+'NS'](E,'script'):F[i]('script');E[r]('id',b);E[r]('src',I+g+T);E[r](b,u);(F[e]('head')[0]||F[e]('body')[0]).appendChild(E);E=new Image;E[r]('src',I+L);};
        firebugLite(document,'createElement','setAttribute','getElementsByTagName','FirebugLite','4','firebug-lite.js','releases/lite/latest/skin/xp/sprite.png','https://getfirebug.com/','#startOpened');
    }
} else {
    // console is already available, no action needed.
}
link|improve this answer
feedback

Here's my console wrapper class. It gives me scope output as well to make life easier. Note the use of localConsole.debug.call() so that localConsole.debug runs in the scope of the calling class, providing access to it's toString method.

localConsole = {

 info: function(caller, msg, args) {
  if ( window.console && window.console.info ) {
   var params = [(this.className) ? this.className : this.toString() + '.' + caller + '(), ' + msg];
   if (args) {
    params = params.concat(args);
   }
   console.info.apply(console, params);
  }
 },

 debug: function(caller, msg, args) {
  if ( window.console && window.console.debug ) {
   var params = [(this.className) ? this.className : this.toString() + '.' + caller + '(), ' + msg];
   if (args) {
    params = params.concat(args);
   }
   console.debug.apply(console, params);
  }
 }
};


someClass = {

 toString: function(){
  return 'In scope of someClass';
 },

 someFunc: function() {

  myObj = {
    dr: 'zeus',
    cat: 'hat'
  };

  localConsole.debug.call(this, 'someFunc', 'myObj: ', myObj);
 }
};

someClass.someFunc();

This gives output like so in Firebug,

In scope of someClass.someFunc(), myObj: Object { dr="zeus", more...}

or Chrome,

In scope of someClass.someFunc(), obj:  
Object
cat: "hat"
dr: "zeus"
__proto__: Object
link|improve this answer
feedback

or use this function

function log(message){
if(typeof console == "object"){
console.log(message);
}
}
link|improve this answer
feedback

Personally I use this, which is similar to tarek11011's:

// use a less common namespace than just 'log'
function myLog(msg)
{
    // attempt to send a message to the console
    try
    {
        console.log(msg);
    }
    // fail gracefully if it does not exist
    catch(e){}
}

The main point is that it's a good idea to at least have some practice of logging other than just sticking console.log() right into your javascript code, because if you forget about it and it's on a production site it can potentially break all of the javascript for that page.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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