From 046554cd7a36518b4df3a869f29659f7a2774edd Mon Sep 17 00:00:00 2001 From: Jaifroid Date: Mon, 29 May 2023 07:57:30 +0100 Subject: [PATCH] Remove unneeded debug --- service-worker.js | 1 - 1 file changed, 1 deletion(-) diff --git a/service-worker.js b/service-worker.js index 241164ce..2d0918aa 100644 --- a/service-worker.js +++ b/service-worker.js @@ -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) {