Victor Le
Victor Le

Reputation: 1788

Amazon Echo Lambda function. Where are console printed?

Where would I need to go if I had a console.log("some stuff in here") inside my function to see it printed out for my Lambda function that AWS service provides?

Upvotes: 1

Views: 2374

Answers (1)

Tom
Tom

Reputation: 17892

You go to AWS CloudWatch > Log Groups > Streams for /aws/lambda/.

For me the URL is

https://console.aws.amazon.com/cloudwatch/home?region=#logStream:group=;streamFilter=typeLogStreamPrefix

But easiest thing is probably just go to CloudWatch and look around.

Upvotes: 3

Related Questions