Added debug log for jsdom window closing.
This commit is contained in:
parent
eafa144104
commit
61daf5f037
|
@ -128,6 +128,10 @@ async function scrapeRelease(baseRelease, entitiesBySlug, type = 'scene') {
|
||||||
|
|
||||||
const pathname = new URL(baseRelease.url).pathname.replace(/\//g, '_');
|
const pathname = new URL(baseRelease.url).pathname.replace(/\//g, '_');
|
||||||
|
|
||||||
|
if (windows.has(pathname)) {
|
||||||
|
logger.debug(`Closing window for ${pathname}`);
|
||||||
|
}
|
||||||
|
|
||||||
windows.get(pathname)?.close();
|
windows.get(pathname)?.close();
|
||||||
windows.delete(pathname);
|
windows.delete(pathname);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue