Skip to content

Commit

Permalink
remove redundant logs
Browse files Browse the repository at this point in the history
  • Loading branch information
insipx committed Jul 18, 2024
1 parent 8668381 commit 7560c2a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion bindings_ffi/src/mls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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())?;
Expand Down
4 changes: 0 additions & 4 deletions xmtp_mls/src/storage/encrypted_store/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,6 @@ impl EncryptedMessageStore {
enc_key: Option<EncryptionKey>,
) -> Result<Self, StorageError> {
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()
Expand Down

0 comments on commit 7560c2a

Please sign in to comment.