From cac3436e013b7e297a57b9e26c123c7631c1495f Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Thu, 24 Aug 2023 04:11:32 -0700 Subject: [PATCH] Demote handled doctor check failures to warning Summary: - It's handled. - It's already user-visible. - It's usually timeouts which aren't actionable. Reviewed By: lblasa Differential Revision: D48642582 fbshipit-source-id: ccb3e56d4937bec2f9e887b7d62b98806140b2e8 --- desktop/flipper-ui-core/src/utils/runHealthchecks.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/flipper-ui-core/src/utils/runHealthchecks.tsx b/desktop/flipper-ui-core/src/utils/runHealthchecks.tsx index 81c2f4639..7385d7331 100644 --- a/desktop/flipper-ui-core/src/utils/runHealthchecks.tsx +++ b/desktop/flipper-ui-core/src/utils/runHealthchecks.tsx @@ -58,7 +58,7 @@ async function launchHealthchecks(options: HealthcheckOptions): Promise { h.key, ) .catch((e) => { - console.error('Failed to run doctor check', e); + console.warn('Failed to run doctor check', e); return { status: 'FAILED', isAcknowledged: false,