mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
69df19f195
* Maintain console logging in dev mode Co-authored-by: kumavis <aaron@kumavis.me> Co-authored-by: Erik Marks <rekmarks@protonmail.com> Co-authored-by: Mark Stacey <markjstacey@gmail.com>
10 lines
312 B
JavaScript
10 lines
312 B
JavaScript
// Disable console.log in contentscript to prevent SES/lockdown logging to external page
|
|
// eslint-disable-next-line import/unambiguous
|
|
if (
|
|
!(typeof process !== 'undefined' && process.env.METAMASK_DEBUG) &&
|
|
typeof console !== undefined
|
|
) {
|
|
console.log = () => undefined
|
|
console.info = () => undefined
|
|
}
|