From 53e803e02c6698c7fb096cb01a3b6e18cdeb8a26 Mon Sep 17 00:00:00 2001 From: Alexander Date: Tue, 12 Mar 2024 09:45:00 +0100 Subject: [PATCH] chore: improve debugging by correcting logging message on persister --- src/store/persister/persister.worker.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/store/persister/persister.worker.ts b/src/store/persister/persister.worker.ts index 7c3f3ab..660cc76 100644 --- a/src/store/persister/persister.worker.ts +++ b/src/store/persister/persister.worker.ts @@ -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)