chore(crypto): Lower a very noisy log line

This partially reverts: 66fcaeb2ba
This commit is contained in:
Damir Jelić
2025-02-27 15:39:18 +01:00
parent 4742aa298a
commit b422b93c78
2 changed files with 3 additions and 3 deletions

View File

@@ -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(),

View File

@@ -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)) => {