Add logging of JSON requests.
This commit is contained in:
parent
e627581f66
commit
8010008268
|
@ -52,7 +52,9 @@ async fn echo_request(
|
|||
warn!("Received a non-JSON body.");
|
||||
None
|
||||
},
|
||||
Some(Json(value)) => Some(value),
|
||||
Some(Json(value)) => {
|
||||
info!("JSON request: {}", value.to_string());
|
||||
Some(value)},
|
||||
};
|
||||
let response = EchoResponse {
|
||||
method,
|
||||
|
|
Loading…
Reference in New Issue