We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21f6622 commit 6a617dbCopy full SHA for 6a617db
lambda-runtime/src/commonMain/kotlin/io/github/trueangle/knative/lambda/runtime/LambdaRuntime.kt
@@ -68,8 +68,8 @@ object LambdaRuntime {
68
with(Log) {
69
setContext(context)
70
71
- trace(event)
72
- trace(context)
+ debug(event)
+ debug(context)
73
}
74
75
Log.info("$handlerName invocation started")
@@ -85,6 +85,8 @@ object LambdaRuntime {
85
val response = bufferedResponse(context) { handler.handleRequest(event, context) }
86
87
Log.info("$handlerName invocation completed")
88
+ Log.debug("$handlerName response: ")
89
+ Log.debug(response)
90
91
client.sendResponse(context, response, outputTypeInfo)
92
0 commit comments