You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// when log level is trace or lower, print the first Kb of the payload
if logger.logLevel <= .trace, let buffer = bytes.getSlice(at: 0, length: max(bytes.readableBytes, 1024)) {
logger.trace("sending invocation to lambda handler",
metadata: ["1024 first bytes": .string(String(buffer: buffer))])
} else {
logger.debug("sending invocation to lambda handler")
}
Where is the good place to add this code ?
Is it in Lambda.runLoop() ?
Verify if this change has been kept in v2
2219782
The text was updated successfully, but these errors were encountered: