We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eff7707 commit 2fe2c41Copy full SHA for 2fe2c41
1 file changed
src/domain_fronter.rs
@@ -2685,15 +2685,7 @@ impl DomainFronter {
2685
let app_body = self
2686
.send_prebuilt_payload_through_relay(outer_payload)
2687
.await?;
2688
-
2689
- // temporary diagnostics for exit-node response debugging.
2690
- // Logs the raw app_body before parse_exit_node_response() is called.
2691
- tracing::debug!(
2692
- "EXIT_DIAG app_body len={} first_200={:?}",
2693
- app_body.len(),
2694
- String::from_utf8_lossy(&app_body[..app_body.len().min(200)])
2695
- );
2696
+
2697
let result = parse_exit_node_response(&app_body);
2698
result
2699
}
0 commit comments