Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lambda-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ impl Runtime {
// Group the handling in one future and instrument it with the span
async {
let body = body.collect().await?.to_bytes();
trace!("response body - {}", std::str::from_utf8(&body)?);
trace!(body = std::str::from_utf8(&body)?, "raw JSON event received from Lambda");

#[cfg(debug_assertions)]
if parts.status.is_server_error() {
Expand Down