diff --git a/apps/orchestrator/src/workflows/send.email.workflow.ts b/apps/orchestrator/src/workflows/send.email.workflow.ts index 7b8255e1..7b9f3d43 100644 --- a/apps/orchestrator/src/workflows/send.email.workflow.ts +++ b/apps/orchestrator/src/workflows/send.email.workflow.ts @@ -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);