Skip to content

Commit

Permalink
Fix: incorrect error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jsanmigimeno committed Jun 25, 2024
1 parent 22e5280 commit 8dbd169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/getter/getter.worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class GetterWorker {
await this.handleEvent(log);
} catch (error) {
this.logger.error(
{ log, error },
{ log, error: tryErrorToString(error) },
`Failed to process event on getter worker.`
);
}
Expand Down

0 comments on commit 8dbd169

Please sign in to comment.