Remove dbg! left in by accident

This commit is contained in:
David Pedersen 2021-08-02 09:44:39 +02:00
parent ee9032b9d1
commit a0f6dccc5e

View file

@ -312,8 +312,6 @@ where
}
fn response<E>(status: StatusCode, body: &'static str) -> Result<Response<BoxBody>, E> {
dbg!((status, body));
let res = Response::builder()
.status(status)
.body(box_body(Full::from(body)))