Skip to content

Commit

Permalink
fix: log level of connecting to rdp
Browse files Browse the repository at this point in the history
  • Loading branch information
northword committed Dec 27, 2024
1 parent 64a474e commit 1e73ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/zotero/remote-zotero.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1e73ad8

Please sign in to comment.