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`); }