2

How do you debug AWS lambda endpoint without repushing all the code each time ?

Comments
  • 1
    AWS as a hosted Cloud9 that allows doing this. Also you can use serverless (from npm), allowing you to run/debug locally and then deploy it
  • 2
    @h0ru5 this is the way to go. Also some environment variable that activates heavy logging into cloudwatch
  • 0
    @h0ru5 but when is complexe and i use queue system from amazon im ditchhh
  • 0
    it's never "not complex" :P

    when involving other services, check out @Kimmax 's comment - log heavy in Lamda & target and compare logs by timestamp.

    I used SNS to send me messages also - but that was a bad idea!
Add Comment