pub fn debug_log_reqwest_response(
status: StatusCode,
headers: &HeaderMap,
body: &[u8],
)Expand description
Logs an HTTP response (status, headers, body) to the process-wide default transport logger.
Companion to debug_log_reqwest_request for reqwest-direct call sites.
The caller passes the already-read response body. It is a no-op (no header
clone or body copy) unless an enabled logger has been installed via
set_default_transport_logger.