Skip to content

Commit

Permalink
chore: improve debugging by correcting logging message on persister
Browse files Browse the repository at this point in the history
  • Loading branch information
reednaa committed Mar 12, 2024
1 parent 400c91a commit 53e803e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/store/persister/persister.worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,9 @@ class PersisterWorker {
.limit(1);
if (bountiesSelected.length === 0) {
// Insert a bounty and get the id.
this.logger.debug(`Inserting ${key} as amb`);
this.logger.debug(
`Inserting ${key}, ${parsedValue.messageIdentifier} as bounty via AMB`,
);
bountyId = (
await this.db
.insert(bounties)
Expand Down

0 comments on commit 53e803e

Please sign in to comment.