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
This commit is contained in:
Pascal Hartig
2023-08-24 04:11:32 -07:00
committed by Facebook GitHub Bot
parent bb4090f529
commit cac3436e01

View File

@@ -58,7 +58,7 @@ async function launchHealthchecks(options: HealthcheckOptions): Promise<void> {
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,