feat: no longer email on logs, just errors
Code Analysis / SonarQube (push) Failing after 16s
Node.js CI / Lint and Test (push) Successful in 41s

This commit is contained in:
2025-08-27 19:15:07 -07:00
parent a2dc40020d
commit dae9c53cac
-1
View File
@@ -85,7 +85,6 @@ export const instantiateServer = async(): Promise<void> => {
return;
}
const { application, level, message } = request.body;
await sendMail(`[${level}]: ${application}`, message);
await sendDiscord(`[${level}]: ${application}`, message);
await response.status(200).send({ success: true });
} catch (error) {