1
0
mirror of https://github.com/SuperBFG7/ympd synced 2024-11-05 14:26:16 +00:00

fix: remove console debug logging

This commit is contained in:
jcorporation 2018-07-25 23:40:06 +01:00
parent b9064767a1
commit 7fc18e4a65

View File

@ -33,7 +33,6 @@ self.addEventListener('fetch', function(event) {
if (urlsToCache.includes(url)) {
event.respondWith(fromCache(event.request));
event.waitUntil(update(event.request));
console.log('Serve request from cache: ' + url);
}
}
});