Skip to content
This repository has been archived by the owner on Jan 12, 2022. It is now read-only.

Commit

Permalink
fix: correct logging of identity fetched (#310)
Browse files Browse the repository at this point in the history
* fix: correct logging of identity fetched

* fix: remove toString unnecessary call

* chore: use default env vars
  • Loading branch information
Alex-Werner authored and Konstantin Shuplenkov committed Oct 25, 2021
1 parent 5b7c3c0 commit aae94e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#DRIVE_BRANCH=update-dpp
#DAPI_BRANCH=send-metadata-buffer
#DASHMATE_BRANCH=update-dpp
#TEST_SUITE_BRANCH=update-dpp
#TEST_SUITE_BRANCH=update-dpp
2 changes: 1 addition & 1 deletion src/plugins/Workers/IdentitySyncWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class IdentitySyncWorker extends Worker {
// it means gaps are not sequential
gapCount = 0;

logger.silly(`IdentitySyncWorker - got ${fetchedId} at ${index}`);
logger.silly(`IdentitySyncWorker - got ${Identifier.from(fetchedId)} at ${index}`);

// eslint-disable-next-line no-await-in-loop
await this.storage.insertIdentityIdAtIndex(
Expand Down

0 comments on commit aae94e2

Please sign in to comment.