diff options
Diffstat (limited to 'src/https.rs')
-rw-r--r-- | src/https.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/https.rs b/src/https.rs index ae737d9..33b8030 100644 --- a/src/https.rs +++ b/src/https.rs @@ -117,6 +117,7 @@ async fn handle( let to_addr = format!("http://{}", proxy_to.target_addr); info!("Proxying {} {} -> {}", host, path, to_addr); + trace!("Request: {:?}", req); let mut response = reverse_proxy::call(remote_addr.ip(), &to_addr, req).await?; @@ -126,6 +127,7 @@ async fn handle( HeaderValue::from_str(value)?, ); } + trace!("Response: {:?}", response); Ok(response) } else { |