Skip to content

Commit

Permalink
remove tracers
Browse files Browse the repository at this point in the history
  • Loading branch information
markcda committed Feb 2, 2025
1 parent a3992ce commit 87fd841
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/proxy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -319,14 +319,12 @@ where
},
body,
) = response.into_parts();
tracing::warn!("{:?}", headers);
res.status_code(status);
for name in headers.keys() {
for value in headers.get_all(name) {
res.headers.append(name, value.to_owned());
}
}
tracing::warn!("{:?}", res.headers);
res.body(body);
}
Err(e) => {
Expand Down

0 comments on commit 87fd841

Please sign in to comment.