I have a page with a couple of scripts it's using:
<script src="thirdparty.com/js/foo.js"></script>
<script src="bar.js"></script>
I need to use console.log()
to print some things in bar.js, but the output keeps getting buried in all of the stuff foo.js prints to the screen which I don't care about. I don't have access to foo.js to make changes to it and removing it is out of the question.
How can I make Firebug stop console printing from foo.js and continue to allow printing from bar.js?
Before Including foo.js try to execute the following JS:
In this case you will have empty functions for foo.js.
In bar.js you can use _console.
If this is acceptable solution for you, you can think on its improvement.