fix: send logs too
Some checks failed
Node.js CI / Lint and Test (push) Has been cancelled
Code Analysis / SonarQube (push) Has been cancelled

This commit is contained in:
2025-06-26 12:04:16 -07:00
parent 5aa47190d6
commit 37c2bbcd16

View File

@ -76,6 +76,7 @@ export const instantiateServer = (): void => {
}
const { application, level, message } = request.body;
await sendMail(`[${level}]: ${application}`, message);
await sendDiscord(`[${level}]: ${application}`, message);
await response.status(200).send({ success: true });
});