Created
March 27, 2023 14:13
-
-
Save bmeurer/fe7c96d6e53a8168c44c5bdaa62734ce to your computer and use it in GitHub Desktop.
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
const originalError = console.error; | |
console.error = function(...args) { | |
originalError(...args, "foo"); | |
} | |
//# sourceMappingURL=data:... |
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
{ | |
"version":3, | |
"sources":["devtools.js"], | |
"sourcesContent":"const originalError = console.error;\nconsole.error = function(...args) {\n originalError(...args, "foo");\n}", | |
"x_google_ignoreList": [0] | |
} |
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
const originalError = console.error; | |
console.error = function(...args) { | |
originalError(...args, "foo"); | |
} |
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
<script> | |
const originalError = console.error; | |
console.error = function(...args) { | |
originalError(...args, "foo"); | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment