Skip to content

Commit

Permalink
chore: enhance logging when publishing events to new SNS (#501)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleortega authored Oct 1, 2024
1 parent b74afff commit 655c0dd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/adapters/deployer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ export function createDeployerComponent(
})
)
logger.info('Notification sent', {
MessageId: receipt.MessageId as any,
SequenceNumber: receipt.SequenceNumber as any
messageId: receipt.MessageId as any,
sequenceNumber: receipt.SequenceNumber as any
})
})
}
Expand All @@ -77,8 +77,9 @@ export function createDeployerComponent(
})
)
logger.info('Notification sent to events SNS', {
MessageId: receipt.MessageId as any,
SequenceNumber: receipt.SequenceNumber as any
messageId: receipt.MessageId as any,
sequenceNumber: receipt.SequenceNumber as any,
entityId: deploymentToSqs.entity.entityId
})
}

Expand Down

0 comments on commit 655c0dd

Please sign in to comment.