We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09819be commit 73736fdCopy full SHA for 73736fd
lambda-runtime/src/lib.rs
@@ -126,7 +126,7 @@ impl Runtime {
126
// Group the handling in one future and instrument it with the span
127
async {
128
let body = body.collect().await?.to_bytes();
129
- trace!("response body - {}", std::str::from_utf8(&body)?);
+ trace!(body = std::str::from_utf8(&body)?, "raw JSON event received from Lambda");
130
131
#[cfg(debug_assertions)]
132
if parts.status.is_server_error() {
0 commit comments