remove debug log

This commit is contained in:
Megan Rogge 2021-11-17 14:01:31 -08:00
parent 00fa317c43
commit 239a94cee8
No known key found for this signature in database
GPG key ID: 69182D7934F25879

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 {