Created
November 6, 2015 13:42
-
-
Save hayatbiralem/ad7b720f4c1c9299e04a to your computer and use it in GitHub Desktop.
Log function for Chrome Console
This file contains 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
var debug = true; | |
var log = function(type){ debug && window.console && console[( type in console ? type : 'log' )].apply(console, Array.prototype.slice.call(arguments, ( type in console ? 1 : 0 ))); }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Easy grouping:
Usage
Result