Skip to content

Commit 48690ee

Browse files
committed
Removed console.log() patching test code accidentally committed in media.js.
1 parent 10d4986 commit 48690ee

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

src/content/media.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ try {
88
exportFunction(replacement, obj, {defineAs: methodName});
99
unpatched.set(obj, methods);
1010
}
11-
patch(window.console, "log", function(s, ...args) {
12-
unpatched.get(window.console).log.call(`PATCHED ${s}`, ...args);
13-
});
1411
let urlMap = new WeakMap();
1512
patch(window.URL, "createObjectURL", function(o, ...args) {
1613
let url = unpatched.get(window.URL).createObjectURL.call(this, o, ...args);

0 commit comments

Comments
 (0)