remove this unnecessary log, use debug_warn
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
a496cc4705
commit
0223386243
1 changed files with 3 additions and 3 deletions
|
@ -26,7 +26,7 @@ use serde::Deserialize;
|
||||||
use tracing::{debug, error, trace, warn};
|
use tracing::{debug, error, trace, warn};
|
||||||
|
|
||||||
use super::{Ruma, RumaResponse};
|
use super::{Ruma, RumaResponse};
|
||||||
use crate::{service::appservice::RegistrationInfo, services, Error, Result};
|
use crate::{debug_warn, service::appservice::RegistrationInfo, services, Error, Result};
|
||||||
|
|
||||||
enum Token {
|
enum Token {
|
||||||
Appservice(Box<RegistrationInfo>),
|
Appservice(Box<RegistrationInfo>),
|
||||||
|
@ -317,8 +317,8 @@ where
|
||||||
|
|
||||||
trace!("{:?} {:?} {:?}", http_request.method(), http_request.uri(), json_body);
|
trace!("{:?} {:?} {:?}", http_request.method(), http_request.uri(), json_body);
|
||||||
let body = T::try_from_http_request(http_request, &path_params).map_err(|e| {
|
let body = T::try_from_http_request(http_request, &path_params).map_err(|e| {
|
||||||
warn!("try_from_http_request failed: {e:?}\nPath parameters: {path_params:?}",);
|
warn!("try_from_http_request failed: {e:?}",);
|
||||||
debug!("JSON body: {:?}", json_body);
|
debug_warn!("JSON body: {:?}", json_body);
|
||||||
Error::BadRequest(ErrorKind::BadJson, "Failed to deserialize request.")
|
Error::BadRequest(ErrorKind::BadJson, "Failed to deserialize request.")
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue