Skip to content

Instantly share code, notes, and snippets.

@h4ck4life
Forked from cfj/console.clog.js
Created March 29, 2014 13:44
Show Gist options
  • Save h4ck4life/9854725 to your computer and use it in GitHub Desktop.
Save h4ck4life/9854725 to your computer and use it in GitHub Desktop.
window.console.clog = function(log){
var message = typeof log === 'object' ? '%cLooks like you\'re trying to log an ' : '%cLooks like you\'re trying to log a ',
style = 'background:url(http://i.imgur.com/SErVs5H.png);padding:5px 15px 142px 19px;line-height:280px;';
console.log.call(console, message + typeof log + '.', style);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment