From 7560c2af3c938c939fb3515a91a7f55bf2c7168e Mon Sep 17 00:00:00 2001 From: Andrew Plaza Date: Thu, 18 Jul 2024 13:40:00 -0400 Subject: [PATCH] remove redundant logs --- bindings_ffi/src/mls.rs | 1 - xmtp_mls/src/storage/encrypted_store/mod.rs | 4 ---- 2 files changed, 5 deletions(-) diff --git a/bindings_ffi/src/mls.rs b/bindings_ffi/src/mls.rs index 3e11eed62..afe74a3a4 100644 --- a/bindings_ffi/src/mls.rs +++ b/bindings_ffi/src/mls.rs @@ -104,7 +104,6 @@ pub async fn create_client( let store = match encryption_key { Some(key) => { - log::info!("Key exists -- creating encrypted database"); let key: EncryptionKey = key .try_into() .map_err(|_| "Malformed 32 byte encryption key".to_string())?; diff --git a/xmtp_mls/src/storage/encrypted_store/mod.rs b/xmtp_mls/src/storage/encrypted_store/mod.rs index fa4ba553c..bb264cc15 100644 --- a/xmtp_mls/src/storage/encrypted_store/mod.rs +++ b/xmtp_mls/src/storage/encrypted_store/mod.rs @@ -117,10 +117,6 @@ impl EncryptedMessageStore { enc_key: Option, ) -> Result { log::info!("Setting up DB connection pool"); - log::info!( - "Creating new EncryptedMessageStore with enc_key:{}", - enc_key.is_some() - ); let pool = match opts { StorageOption::Ephemeral => Pool::builder()