Hi
I get this message in the console repeatedly:
Found element for cleaning: sw.js:1
The code that generates it:
, removeEqualRequestsWithDifferentQueryParams = (e, a, t) => {
caches.open(e).then(e => {
e.matchAll(t, {
ignoreSearch: !0
}).then(t => {
t.forEach(t => {
t.url.endsWith(a) || (console.log("Found element for cleaning: " + t.url),
e.delete(t.url))
}
)
}
)
}
)
It happens both in dev and prod. The amount of logging is extreme and causes the browser to become sluggish.
Can you look into this?
As you can see from the screenshots I got 2 million lines in the log.