Remove unneeded debug

This commit is contained in:
Jaifroid 2023-05-29 07:57:30 +01:00
parent 460188219d
commit 046554cd7a

View File

@ -347,7 +347,6 @@ self.addEventListener('fetch', function (event) {
// If request was successful, add or update it in the cache, but be careful not to cache the ZIM archive itself!
if (!regexpExcludedURLSchema.test(event.request.url) && !/\.zim\w{0,2}$/i.test(strippedUrl)) {
event.waitUntil(updateCache(APP_CACHE, rqUrl, response.clone()));
console.debug('DEV: *** Consider adding this URL to the list of precached files in the service worker ***');
}
return response;
}).catch(function (error) {