remove debug log

This commit is contained in:
Megan Rogge
2021-11-17 14:01:31 -08:00
parent 00fa317c43
commit 239a94cee8

View File

@@ -232,7 +232,6 @@ async function poll<T>(
let result;
try {
result = await fn();
console.log('DEBUG: poll result', result);
if (acceptFn(result)) {
return result;
} else {