Skip to content

Commit 358a845

Browse files
Merge pull request #160 from ElrondNetwork/fix-log-level
Fix log level in transaction watcher.
2 parents c7c9c5b + c9f84d7 commit 358a845

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
77
## Unreleased
88
- TBD
99

10+
## [9.2.3]
11+
- [Fix log level in transaction watcher.](https://github.com/ElrondNetwork/elrond-sdk-erdjs/pull/160)
12+
1013
## [9.2.2]
1114
- [Wallet Provider: add "options" on tx sign return value](https://github.com/ElrondNetwork/elrond-sdk-erdjs/pull/157)
1215

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elrondnetwork/erdjs",
3-
"version": "9.2.2",
3+
"version": "9.2.3",
44
"description": "Smart Contracts interaction framework",
55
"main": "out/index.js",
66
"types": "out/index.d.js",

src/transactionWatcher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export class TransactionWatcher {
116116
break;
117117
}
118118
} catch (error) {
119-
Logger.info("TransactionWatcher.awaitConditionally(): cannot (yet) fetch data.", this.hash.toString());
119+
Logger.debug("TransactionWatcher.awaitConditionally(): cannot (yet) fetch data.", this.hash.toString());
120120

121121
if (!(error instanceof errors.Err)) {
122122
throw error;

0 commit comments

Comments
 (0)