Skip to content

Commit 17f3af6

Browse files
committed
chore: remove extra debugging logs
1 parent 69cbc44 commit 17f3af6

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

rust-runtime/aws-smithy-http-server/src/routing/into_make_lambda_service.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ opaque_future! {
8383

8484
fn lambda_to_hyper_request(request: Request) -> HyperRequest {
8585
tracing::debug!("Converting Lambda to Hyper request...");
86-
tracing::debug!("{:?}", request.request_context());
8786
// Raw HTTP path without any stage information
8887
let raw_path = request.raw_http_path();
8988
let (parts, body) = request.into_parts();
@@ -118,7 +117,6 @@ fn lambda_to_hyper_request(request: Request) -> HyperRequest {
118117
// No builder method that sets headers in batch
119118
let _ = std::mem::replace(req.headers_mut(), parts.headers);
120119
tracing::debug!("Hyper request converted successfully.");
121-
tracing::debug!("{:?}", req);
122120
req
123121
}
124122

0 commit comments

Comments
 (0)