From 1e73ad8b7ffa48e6d424c3cab3a957dd7d152407 Mon Sep 17 00:00:00 2001 From: Northword Date: Fri, 27 Dec 2024 14:38:27 +0800 Subject: [PATCH] fix: log level of connecting to rdp --- src/utils/zotero/remote-zotero.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/zotero/remote-zotero.ts b/src/utils/zotero/remote-zotero.ts index ad4cdd5..e01a2df 100644 --- a/src/utils/zotero/remote-zotero.ts +++ b/src/utils/zotero/remote-zotero.ts @@ -84,7 +84,7 @@ export class RemoteFirefox { return this.client; } catch (error: any) { - logger.fail("Failed to connecte to RDP client, retry..."); + logger.debug("Failed to connecte to RDP client, retry..."); if (isErrorWithCode("ECONNREFUSED", error)) { await new Promise(resolve => setTimeout(resolve, RETRY_INTERVAL)); lastError = error;