Last active
June 29, 2016 19:06
-
-
Save rbk/3556ee5627f8ba51372a69c0600aae52 to your computer and use it in GitHub Desktop.
Super Console Log for Chrome
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function superConsoleLog( arg ) { | |
console.time( arg ); | |
console.profile( arg ); | |
console.assert( arg ); | |
console.count( arg ); | |
console.debug( arg ); | |
console.dir( arg ); | |
console.dirxml( arg ); | |
console.error( arg ); | |
console.info( arg ); | |
console.log( arg ); | |
console.table( arg ); | |
console.timeStamp( arg ); | |
console.trace( arg ); | |
console.warn( arg ); | |
console.timeEnd( arg ); | |
console.profileEnd( arg ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment