mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-05 06:28:20 -04:00
chore(crypto): Lower a very noisy log line
This partially reverts: 66fcaeb2ba
This commit is contained in:
@@ -31,7 +31,7 @@ use ruma::{
|
||||
};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use serde_json::Value;
|
||||
use tracing::{debug, instrument, trace, warn};
|
||||
use tracing::{instrument, trace, warn};
|
||||
use vodozemac::{olm::SessionConfig, Curve25519PublicKey, Ed25519PublicKey};
|
||||
|
||||
use super::{atomic_bool_deserializer, atomic_bool_serializer};
|
||||
@@ -870,7 +870,7 @@ impl DeviceData {
|
||||
device_keys.ed25519_key().map(Box::new),
|
||||
))
|
||||
} else if self.device_keys.as_ref() != device_keys {
|
||||
debug!(
|
||||
trace!(
|
||||
user_id = ?self.user_id(),
|
||||
device_id = ?self.device_id(),
|
||||
keys = ?self.keys(),
|
||||
|
||||
@@ -687,7 +687,7 @@ impl IdentityManager {
|
||||
.await
|
||||
{
|
||||
Ok(IdentityUpdateResult::Updated(identity)) => {
|
||||
debug!(?identity, "Updated a user identity");
|
||||
trace!(?identity, "Updated a user identity");
|
||||
changes.changed.push(identity);
|
||||
}
|
||||
Ok(IdentityUpdateResult::Unchanged(identity)) => {
|
||||
|
||||
Reference in New Issue
Block a user