Skip to content

Commit

Permalink
Merge pull request #160 from ElrondNetwork/fix-log-level
Browse files Browse the repository at this point in the history
Fix log level in transaction watcher.
  • Loading branch information
andreibancioiu authored Mar 23, 2022
2 parents c7c9c5b + c9f84d7 commit 358a845
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
## Unreleased
- TBD

## [9.2.3]
- [Fix log level in transaction watcher.](https://github.com/ElrondNetwork/elrond-sdk-erdjs/pull/160)

## [9.2.2]
- [Wallet Provider: add "options" on tx sign return value](https://github.com/ElrondNetwork/elrond-sdk-erdjs/pull/157)

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elrondnetwork/erdjs",
"version": "9.2.2",
"version": "9.2.3",
"description": "Smart Contracts interaction framework",
"main": "out/index.js",
"types": "out/index.d.js",
Expand Down
2 changes: 1 addition & 1 deletion src/transactionWatcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class TransactionWatcher {
break;
}
} catch (error) {
Logger.info("TransactionWatcher.awaitConditionally(): cannot (yet) fetch data.", this.hash.toString());
Logger.debug("TransactionWatcher.awaitConditionally(): cannot (yet) fetch data.", this.hash.toString());

if (!(error instanceof errors.Err)) {
throw error;
Expand Down

0 comments on commit 358a845

Please sign in to comment.