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

I'm fairly new to Javascript development so this might be a real newbie question.

I've got a application riddled with console.log(); for debugging purposes.

I've got doing all of my build time combining. It outputs a app.debug.js for debugging as well as a app.min.js for production

Now I could go through all of my code files looking for console.log(); and delete it manually when I'm ready to go to production, but I'm wondering if there's a way to override the method.

Basically, whenever the console.log(); method is called, DO NOTHING.

That way, I can put the override code file in my production config, and NOT in my debug config.

Is this possible?

share|improve this question
2  
create your own object with the name console with log function that does nothing/only function definition. – Sarfraz Aug 12 '11 at 15:43
Here is a great way to override the console.log function, Yet preserve the original functionality of the function... udidu.blogspot.co.il/2012/12/override-console-functions.html – udidu Dec 17 '12 at 10:47

4 Answers

up vote 29 down vote accepted

Put this at the top of the file:

var console = {};
console.log = function(){};
share|improve this answer
1  
simple and BEAUTIFUL. I knew it was pretty newb. Thanks! – Chase Florell Aug 12 '11 at 15:43
sometimes it bugs me that I have to wait 15 minutes before accepting an answer when it's CLEARLY the right answer. – Chase Florell Aug 12 '11 at 15:44
15  
Don't forget to override console.info, console.warn and console.error too, if you use those – Flambino Aug 12 '11 at 15:44
1  
@rockinthesixstring ^_^ no problemo – Neal Aug 12 '11 at 15:44
@Flambino -- that is true. – Neal Aug 12 '11 at 15:45
show 7 more comments
console.log = function(){};

Override it like any other thing.

share|improve this answer
-1. Do not do this! The line here will both throw a ReferenceError and leave console.log undefined on browsers where the console object does not exist, which is an issue for at least some versions of IE. If your objective is to make your web app production-ready, like the OP, then this is almost not the solution you need. Do what Neal wrote instead. – Mark Amery Apr 16 at 22:56
@MarkAmery You're correct. I took the literal meaning of "override", as in "replace", so of course I assumed an original existed. – Zirak Apr 17 at 3:54

It would be super useful to be able to toggle logging in the production build. The code below turns the logger off by default.

When I need to see logs, I just type debug(true) into the console.

var consoleHolder = console;
function debug(bool){
    if(!bool){
        consoleHolder = console;
        console = {};
        console.log = function(){};
    }else
        console = consoleHolder;
}
debug(false);
share|improve this answer

Just remember that with this method each console.log call will still do a call to a (empty) function causing overhead, if there are 100 console.log commands, you are still doing 100 calls to a blank function.

Not sure how much overhead this would cause, but there will be some, it would be preferable to have a flag to turn debug on then use something along the lines of:

var debug=true; if (debug) console.log('blah')
share|improve this answer
1  
that would involve going through all of the code and adding those if statements -- which is tedious. – Neal Sep 8 '11 at 16:28
Not to mention some serious cyclomatic complexity – Chase Florell Jun 12 '12 at 20:36

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.