From 630a7350a0c2222ec3ba61b2225349c65e32d5a1 Mon Sep 17 00:00:00 2001 From: Aric Lasry Date: Mon, 13 Nov 2023 14:38:14 +0100 Subject: [PATCH] Adjusting comment for failed check to "Production check failed" --- front/production_checks/temporal/activities.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/production_checks/temporal/activities.ts b/front/production_checks/temporal/activities.ts index 5c58198af86c..10ebe1418734 100644 --- a/front/production_checks/temporal/activities.ts +++ b/front/production_checks/temporal/activities.ts @@ -30,7 +30,7 @@ async function runAllChecks(checks: Check[]) { logger.info({ reportPayload }, "Check succeeded"); }; const reportFailure = (reportPayload: unknown, message: string) => { - logger.error({ reportPayload, errorMessage: message }, "Check failed"); + logger.error({ reportPayload, errorMessage: message }, "Production check failed"); }; Context.current().heartbeat({ type: "start",