Skip to content

Commit

Permalink
fix: Correct log severity (#1530)
Browse files Browse the repository at this point in the history
  • Loading branch information
pxrl authored May 16, 2024
1 parent 84b410c commit 7855967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libexec/RelayerSpokePoolIndexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ if (require.main === module) {
})
.finally(async () => {
await disconnectRedisClients();
logger.error({ at: "RelayerSpokePoolIndexer", message: `Exiting ${chain} listener.` });
logger.debug({ at: "RelayerSpokePoolIndexer", message: `Exiting ${chain} listener.` });
exit(process.exitCode);
});
}

0 comments on commit 7855967

Please sign in to comment.