Skip to content

Commit

Permalink
Do not log full keys query response which can be very large (#4065)
Browse files Browse the repository at this point in the history
Signed-off-by: Erik Johnston <erikj@jki.re>
Co-authored-by: Damir Jelić <poljar@termina.org.uk>
  • Loading branch information
erikjohnston and poljar authored Oct 3, 2024
1 parent 6de676f commit c9fd5a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/matrix-sdk/src/encryption/recovery/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ impl Recovery {
}
}

#[instrument]
#[instrument(skip_all)]
pub(crate) async fn update_state_after_keys_query(&self, response: &get_keys::v3::Response) {
if let Some(user_id) = self.client.user_id() {
if response.master_keys.contains_key(user_id) {
Expand Down

0 comments on commit c9fd5a0

Please sign in to comment.