summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/content/media.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/content/media.js b/src/content/media.js
index 4ca8942..b975bef 100644
--- a/src/content/media.js
+++ b/src/content/media.js
@@ -8,9 +8,6 @@ try {
exportFunction(replacement, obj, {defineAs: methodName});
unpatched.set(obj, methods);
}
- patch(window.console, "log", function(s, ...args) {
- unpatched.get(window.console).log.call(`PATCHED ${s}`, ...args);
- });
let urlMap = new WeakMap();
patch(window.URL, "createObjectURL", function(o, ...args) {
let url = unpatched.get(window.URL).createObjectURL.call(this, o, ...args);