Skip to content

Commit

Permalink
Fix logs
Browse files Browse the repository at this point in the history
  • Loading branch information
shuyec committed Jan 14, 2025
1 parent cb013de commit e1b6373
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const handleActivationOrSuspension = async (
if (existingAgreementEntry) {
if (existingAgreementEntry.version > incomingVersion) {
logger.info(
`Skipping processing of entry ${existingAgreementEntry}. Reason: a more recent entry already exists`
`Skipping processing of entry ${primaryKey}. Reason: a more recent entry already exists`
);
return Promise.resolve();
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export async function handleMessageV2(
if (existingAgreementEntry) {
if (existingAgreementEntry.version > msg.version) {
logger.info(
`Skipping processing of entry ${existingAgreementEntry}. Reason: a more recent entry already exists`
`Skipping processing of entry ${primaryKey}. Reason: a more recent entry already exists`
);
return Promise.resolve();
} else {
Expand Down

0 comments on commit e1b6373

Please sign in to comment.