Skip to content

Commit b0695a8

Browse files
committed
debug
1 parent fbf8f14 commit b0695a8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ import { SESClient, SendEmailCommand } from '@aws-sdk/client-ses';
33

44
export const handler: SQSHandler = async (event: SQSEvent) => {
55
const body = event.Records[0]!.body;
6+
console.log('body:', body);
67
const message = JSON.parse(body) as ReservationMessage;
7-
8+
console.log('message:', message);
89
const sesClient = new SESClient();
910

1011
const githubRepoUrl = 'https://github.com/project-notification/readme/issues';

0 commit comments

Comments
 (0)