From 610967a55b3b8366f9093bb4d5b0858f996c61cf Mon Sep 17 00:00:00 2001 From: Jack Amadeo Date: Thu, 2 Oct 2025 13:43:45 -0400 Subject: [PATCH] Remove wait-for-ready log (#4956) --- ui/desktop/src/goosed.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/desktop/src/goosed.ts b/ui/desktop/src/goosed.ts index 1f957f8a..a74904b9 100644 --- a/ui/desktop/src/goosed.ts +++ b/ui/desktop/src/goosed.ts @@ -34,8 +34,7 @@ export const checkServerStatus = async (client: Client): Promise => { try { await status({ client, throwOnError: true }); return true; - } catch (error) { - log.error('failure to connect, will retry', error); + } catch { if (attempt === maxAttempts) { log.error(`Server failed to respond after ${(interval * maxAttempts) / 1000} seconds`); }