Skip to content

Commit 8f60654

Browse files
committed
Adds logging
1 parent 8347bce commit 8f60654

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/helper/flushCache.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ module.exports = ({
6363
.map((host) => `host=${encodeURIComponent(host)}`)
6464
.join("&")}`;
6565

66-
console.log("calling flushCache on", url);
66+
console.log("calling flushCache server on", url);
6767
const res = await fetch(url);
6868

6969
if (res.ok) {
@@ -94,6 +94,8 @@ module.exports = ({
9494
}
9595

9696
// Add to queue and wait for completion
97+
console.log("adding to flushCache queue", hosts);
98+
9799
await add(hosts);
98100
};
99101
};

0 commit comments

Comments
 (0)