feat: logging error

This commit is contained in:
Nevo David 2026-01-06 20:54:55 +07:00
parent 633c08fde7
commit 012a347ed6
1 changed files with 3 additions and 1 deletions

View File

@ -47,7 +47,9 @@ export async function sendEmailWorkflow({
}
await sendEmail(email.to, email.subject, email.html, email.replyTo);
processedThisRun++;
} catch (err) {}
} catch (err) {
console.log(err);
}
await sleep(RATE_LIMIT_MS);