I am using the default HelloWorld example My code is:
let response;
exports.lambdaHandler = async (event, context) => {
console.log(event);
try {
response = {
'statusCode': 200,
'body': JSON.stringify({
message: 'hello world'
})
}
} catch (err) {
console.log(err);
return err;
}
return response
};
Everything works as expected. I am starting it with sam local start-api
or sam local start-api --debug
My questions, Where do I see the output of console.log(event);
Currently I can only see a {
.
I if put there a string, like 'AAAAAAAA' I would see that in the terminal where I typed sam local start-api
(as expected).
what am I missing so I can see full local logs?