feat(admin/check-fire-engine): better logging

This commit is contained in:
Gergő Móricz 2025-03-25 20:51:40 +01:00
parent e8f27bef08
commit 42236ef0f0

View File

@ -16,7 +16,7 @@ export async function checkFireEngine(req: Request, res: Response) {
const timeout = setTimeout(() => controller.abort(), 30000);
const urls = ["https://roastmywebsite.ai", "https://example.com"];
let lastError: string | null = null;
let lastError: any = null;
for (const url of urls) {
try {
@ -57,7 +57,11 @@ export async function checkFireEngine(req: Request, res: Response) {
}
// If we get here, all retries failed
logger.error(lastError);
logger.error("An error occurred while checking fire-engine", {
module: "admin",
method: "checkFireEngine",
error: lastError,
});
Sentry.captureException(lastError);
return res.status(500).json({
success: false,