We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19d8c8b commit ebb7fc0Copy full SHA for ebb7fc0
1 file changed
lambdas/allocation/src/allocator.ts
@@ -15,6 +15,10 @@ export default function createAllocator(deps: Deps): SNSHandler {
15
).map((letterEvent) => buildSendMessageCommand(letterEvent, deps.queueUrl));
16
17
for (const sqsCommand of sqsCommands) {
18
+ deps.logger.info({
19
+ description: "Placing message on queue",
20
+ MessageGroupId: sqsCommand.MessageGroupId,
21
+ });
22
deps.sqsClient.send(sqsCommand);
23
}
24
};
0 commit comments