mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-04-30 20:15:53 -04:00
fix(sdk): Don't log the access token in HttpClient::send
This commit is contained in:
committed by
Jonas Platte
parent
391efcec12
commit
b309441dec
@@ -105,7 +105,10 @@ impl HttpClient {
|
||||
HttpClient { inner, request_config }
|
||||
}
|
||||
|
||||
#[tracing::instrument(skip(self, request), fields(request_type = type_name::<Request>()))]
|
||||
#[tracing::instrument(
|
||||
skip(self, request, access_token),
|
||||
fields(request_type = type_name::<Request>()),
|
||||
)]
|
||||
pub async fn send<Request>(
|
||||
&self,
|
||||
request: Request,
|
||||
|
||||
Reference in New Issue
Block a user