Skip to content

Commit

Permalink
chore: fixed console log of chainfollower starting point
Browse files Browse the repository at this point in the history
  • Loading branch information
Kammerlo committed Aug 1, 2024
1 parent d91f945 commit 0ae0f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api-cardano-db-hasura/src/ChainFollower.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export class ChainFollower {
if (this.state !== 'initialized') {
throw new errors.ModuleIsNotInitialized(MODULE_NAME, 'start')
}
this.logger.info({ module: MODULE_NAME }, 'Starting from ' + points)
this.logger.info({ module: MODULE_NAME }, 'Starting from ' + JSON.stringify(points))
await this.queue.start()
await this.chainSyncClient.resume(points)
this.state = 'running'
Expand Down

0 comments on commit 0ae0f31

Please sign in to comment.