We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fd732d commit 41c1561Copy full SHA for 41c1561
main.go
@@ -25,6 +25,10 @@ func main() {
25
log.Println("Firetail extension starting in debug mode.")
26
}
27
28
+ // Log the value of AWS_LAMBDA_EXEC_WRAPPER and AWS_LAMBDA_RUNTIME_API for debugging
29
+ log.Println("AWS_LAMBDA_EXEC_WRAPPER:", os.Getenv("AWS_LAMBDA_EXEC_WRAPPER"))
30
+ log.Println("AWS_LAMBDA_RUNTIME_API:", os.Getenv("AWS_LAMBDA_RUNTIME_API"))
31
+
32
// This context will be cancelled whenever a SIGTERM or SIGINT signal is received
33
// We'll use it for our requests to the extensions API & to shutdown the log server
34
ctx := getContext()
0 commit comments