Skip to content

Commit

Permalink
feat: add monitoring for Brevo service in healthcheck endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
loicguillois committed Nov 6, 2024
1 parent 5804358 commit 2ca3a67
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/healthcheck/src/checks/brevo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export function brevoCheck(apiKey: string): Check {
}
};
await fetch(url, options).then(res => {
console.log(apiKey, res.status, JSON.stringify(res.json()));
if(res.status !== 200) {
throw new Error('Brevo API is not available');
}
Expand Down

0 comments on commit 2ca3a67

Please sign in to comment.