Amazon web services – Check the logs when building Lambda functions with Go
I'm following the official Building Lambda functions with Go to its blank-go/ demo, from which you can see that the handleRequest function almost use log.Print in its whole process: func handleRequest(ctx context.Context, event events.SQSEvent) (string, error) { // event eventJson,…