Skip to content

Instantly share code, notes, and snippets.

@Shridhad
Created October 24, 2015 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shridhad/2b60b78d9f7f8c97a20f to your computer and use it in GitHub Desktop.
Save Shridhad/2b60b78d9f7f8c97a20f to your computer and use it in GitHub Desktop.
Console Logger for Codepen
console.log = function(str) {
var html = "<div class='.log'>" + str + "</div><br />";
document.querySelector("body").innerHTML += html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment