Created
August 28, 2017 14:29
-
-
Save maephisto/f57403651c4256a7f949715d19bc09d7 to your computer and use it in GitHub Desktop.
A expressive layer added on top of Javascript's `console` to better illustrate what that voice in your mind is saying.
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 _log = console.log; | |
var _error = console.error; | |
var _warning = console.warn; | |
console.error = function (errMessage) { | |
errMessage = 'Ooooh π©π©π© : ' + errMessage; | |
_error.apply(console, arguments); | |
}; | |
console.log = function (logMessage) { | |
logMessage = 'π π― ' + logMessage; | |
_log.apply(console, arguments); | |
}; | |
console.warn = function (warnMessage) { | |
warnMessage = 'β οΈ Potential π©π©π© here: ' + warnMessage; | |
_warning.apply(console, arguments); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment