Skip to content

Commit

Permalink
more event
Browse files Browse the repository at this point in the history
  • Loading branch information
philmcmahon committed Mar 14, 2024
1 parent 4d5e823 commit 27a4faf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/output-handler/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ const processMessage = async (event: unknown) => {
const parsedEvent = IncomingSQSEvent.safeParse(event);
if (!parsedEvent.success) {
logger.error(
`Failed to parse SQS message ${parsedEvent.error.message}`,
`Failed to parse SQS message ${parsedEvent.error.message} + ${JSON.stringify(event)}`,
event,
);
throw new Error('Failed to parse SQS message');
Expand Down

0 comments on commit 27a4faf

Please sign in to comment.