diff --git a/package-lock.json b/package-lock.json index 64c1f90f1..5901428d3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14322,6 +14322,7 @@ "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.5.tgz", "integrity": "sha512-HTm14iMQKK2FjFLRTM5lAVcyaUzOnqbPtesFIvREgXpJHdQm8bWS+GkQgIkfaBYRHuCnea7w8UVNfwiAQhlr9A==", "dev": true, + "hasInstallScript": true, "optional": true, "dependencies": { "node-gyp-build": "^4.3.0" @@ -14679,6 +14680,7 @@ "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.7.tgz", "integrity": "sha512-vLt1O5Pp+flcArHGIyKEQq883nBt8nN8tVBcoL0qUXj2XT1n7p70yGIq2VK98I5FdZ1YHc0wk/koOnHjnXWk1Q==", "dev": true, + "hasInstallScript": true, "optional": true, "dependencies": { "node-gyp-build": "^4.3.0" diff --git a/src/services/anchor-service.ts b/src/services/anchor-service.ts index 25f320c82..5f485eaa8 100644 --- a/src/services/anchor-service.ts +++ b/src/services/anchor-service.ts @@ -503,12 +503,9 @@ export class AnchorService { try { await this.ipfsService.storeRecord(ipfsAnchorCommit) - logger.debug( - `Stored anchor commit for ${candidate.cid} of stream ${candidate.streamId} on IPFS` - ) await this.ipfsService.publishAnchorCommit(anchorCid, candidate.streamId) logger.debug( - `Created anchor commit with CID ${anchorCid.toString()} for stream ${candidate.streamId.toString()}` + `Created anchor commit with CID ${anchorCid} for commit ${candidate.cid} of stream ${candidate.streamId}` ) return anchor } catch (err) {