Skip to content

Commit 610967a

Browse files
authored
Remove wait-for-ready log (block#4956)
1 parent 0cf5b6a commit 610967a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ui/desktop/src/goosed.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ export const checkServerStatus = async (client: Client): Promise<boolean> => {
3434
try {
3535
await status({ client, throwOnError: true });
3636
return true;
37-
} catch (error) {
38-
log.error('failure to connect, will retry', error);
37+
} catch {
3938
if (attempt === maxAttempts) {
4039
log.error(`Server failed to respond after ${(interval * maxAttempts) / 1000} seconds`);
4140
}

0 commit comments

Comments
 (0)