feat: logging error
This commit is contained in:
parent
633c08fde7
commit
012a347ed6
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue