Skip to content

Commit

Permalink
fixup! crypto: logging durong QR code verifications
Browse files Browse the repository at this point in the history
Review comment: downgrade an `info` to `debug`
  • Loading branch information
richvdh committed Sep 5, 2024
1 parent ff48450 commit d7f7ad5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/matrix-sdk-crypto/src/verification/qrcode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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::{
Expand Down Expand Up @@ -328,7 +328,7 @@ impl QrVerification {

/// Confirm that the other side has scanned our QR code.
pub fn confirm_scanning(&self) -> Option<OutgoingVerificationRequest> {
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 {
Expand Down

0 comments on commit d7f7ad5

Please sign in to comment.