Remove debugging console log

This commit is contained in:
awsr
2026-02-12 12:23:51 -08:00
committed by GitHub
parent 82e91439bf
commit bce97efbf8
-1
View File
@@ -450,7 +450,6 @@ class GalleryFile extends HTMLElement {
}
this.hash = await getHash(`${this.src}/${this.size}/${this.mtime}`); // eslint-disable-line
console.log('CREATE HASH', this.hash, `${this.src}/${this.size}/${this.mtime}`);
const cachedData = (this.hash && opts.browser_cache) ? await idbGet(this.hash).catch(() => undefined) : undefined;
const img = document.createElement('img');
img.className = 'gallery-file';