Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 3
    I'd go one step further and wrap this in a logger function/class. Something like this: function myLog(msg) { if (debug) { console.log(msg); } } Commented Apr 14, 2015 at 19:44
  • If using Angular, you can use it as a global configuration in your application.js file and use it as a global property to switch the logs on /off. Remember, console will not be undefined if you have the developers toolbar open in IE. Commented May 1, 2015 at 21:37