We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff7f81d commit 2d73fbbCopy full SHA for 2d73fbb
src/common/themes.js
@@ -46,14 +46,14 @@
46
if (patchSheet(s)) return true;
47
} catch (e) {
48
// cross-site stylesheet?
49
- console.error(e, s.href);
+ debug(e, s.href); // DEV_ONLY
50
}
51
52
return false;
53
54
55
if (!patchAll()) {
56
- console.error("Couldn't patch sheets while loading, deferring to onload");
+ debug("Couldn't patch sheets while loading, deferring to onload"); // DEV_ONLY
57
let onload = e => {
58
if (patchAll()) {
59
removeEventListener(e.type, onload, true);
0 commit comments