Skip to content

Instantly share code, notes, and snippets.

@bforrest
Created July 27, 2012 15:24
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bforrest/3188643 to your computer and use it in GitHub Desktop.
Save bforrest/3188643 to your computer and use it in GitHub Desktop.
console log javascript snippet
if (!window.console) {
(function() {
var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml",
"group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
window.console = {};
for (var i = 0; i < names.length; ++i) {
window.console[names[i]] = function() {};
}
}());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment