diff --git a/matrix_sdk_crypto/src/identities/manager.rs b/matrix_sdk_crypto/src/identities/manager.rs index 02a440a0..48d5faf1 100644 --- a/matrix_sdk_crypto/src/identities/manager.rs +++ b/matrix_sdk_crypto/src/identities/manager.rs @@ -136,8 +136,8 @@ impl IdentityManager { if user_id != &device_keys.user_id || device_id != &device_keys.device_id { warn!( - "Mismatch in device keys payload of device {} from user {}", - device_keys.device_id, device_keys.user_id + "Mismatch in device keys payload of device {}|{} from user {}|{}", + device_id, device_keys.device_id, user_id, device_keys.user_id ); continue; } diff --git a/matrix_sdk_crypto/src/olm/account.rs b/matrix_sdk_crypto/src/olm/account.rs index 0557129a..cf20c691 100644 --- a/matrix_sdk_crypto/src/olm/account.rs +++ b/matrix_sdk_crypto/src/olm/account.rs @@ -307,7 +307,7 @@ impl Account { // return with an error if it isn't one. OlmMessage::Message(_) => { warn!( - "Failed to decrypt a non-pre-key message with all + "Failed to decrypt a non-pre-key message with all \ available sessions {} {}", sender, sender_key );