From d7f7ad528f0180646473ab477cf7d75af764ce4a Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Thu, 5 Sep 2024 11:32:30 +0100 Subject: [PATCH] fixup! crypto: logging durong QR code verifications Review comment: downgrade an `info` to `debug` --- crates/matrix-sdk-crypto/src/verification/qrcode.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/matrix-sdk-crypto/src/verification/qrcode.rs b/crates/matrix-sdk-crypto/src/verification/qrcode.rs index 64eb8765936..a5411b6e3e7 100644 --- a/crates/matrix-sdk-crypto/src/verification/qrcode.rs +++ b/crates/matrix-sdk-crypto/src/verification/qrcode.rs @@ -41,7 +41,7 @@ use ruma::{ DeviceId, OwnedDeviceId, OwnedUserId, RoomId, TransactionId, UserId, }; use thiserror::Error; -use tracing::{info, trace}; +use tracing::{debug, trace}; use vodozemac::Ed25519PublicKey; use super::{ @@ -328,7 +328,7 @@ impl QrVerification { /// Confirm that the other side has scanned our QR code. pub fn confirm_scanning(&self) -> Option { - info!("User confirmed other side scanned our QR code"); + debug!("User confirmed other side scanned our QR code"); let mut state = self.state.write(); match &*state {