From 20b824eff83219c956582790891d17c4310317c7 Mon Sep 17 00:00:00 2001 From: Richard Hua Date: Wed, 14 Feb 2024 14:50:56 -0800 Subject: [PATCH] Remove noisy logs (#514) --- xmtp_mls/src/credential/validated_legacy_signed_public_key.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/xmtp_mls/src/credential/validated_legacy_signed_public_key.rs b/xmtp_mls/src/credential/validated_legacy_signed_public_key.rs index ad132c841..f50a384fe 100644 --- a/xmtp_mls/src/credential/validated_legacy_signed_public_key.rs +++ b/xmtp_mls/src/credential/validated_legacy_signed_public_key.rs @@ -73,7 +73,6 @@ impl TryFrom for ValidatedLegacySignedPublicKey { ))?; let wallet_signature = match union { Union::WalletEcdsaCompact(wallet_ecdsa_compact) => { - info!("Reading WalletEcdsaCompact from legacy key"); let mut wallet_signature = wallet_ecdsa_compact.bytes.clone(); wallet_signature.push(wallet_ecdsa_compact.recovery as u8); // TODO: normalize recovery ID if necessary if wallet_signature.len() != 65 { @@ -82,7 +81,6 @@ impl TryFrom for ValidatedLegacySignedPublicKey { wallet_signature } Union::EcdsaCompact(ecdsa_compact) => { - info!("Reading EcdsaCompact from legacy key"); let mut signature = ecdsa_compact.bytes.clone(); signature.push(ecdsa_compact.recovery as u8); // TODO: normalize recovery ID if necessary if signature.len() != 65 {