When debugging an #axum handler in the context of a failing test. Is there a quick way to print the body of the response? The following is a mouthful
```rust
let err = String::from_utf8(
axum::body::to_bytes(res.into_body(), usize::MAX).await.unwrap().to_vec(),
);
println!("==> body {:?}", err);
```