Skip to content

Commit 5e43617

Browse files
authored
fix: change request retry output log to an error log (#2038)
1 parent 7aeac5a commit 5e43617

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/library-legacy/src/connection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1635,7 +1635,7 @@ function createRpcClient(
16351635
if (too_many_requests_retries === 0) {
16361636
break;
16371637
}
1638-
console.log(
1638+
console.error(
16391639
`Server responded with ${res.status} ${res.statusText}. Retrying after ${waitTime}ms delay...`,
16401640
);
16411641
await sleep(waitTime);

0 commit comments

Comments
 (0)