Private
Public Access
1
0

Less chattier log when syncing

This commit is contained in:
2025-05-03 22:13:03 -07:00
parent d843127c6d
commit 8e87c2bce2
2 changed files with 4 additions and 4 deletions

View File

@@ -354,7 +354,7 @@ impl Daemon {
}
async fn sync_conversation_impl(database: &mut Arc<Mutex<Database>>, signal_sender: &Sender<Signal>, conversation_id: String) -> Result<()> {
log::info!(target: target::SYNC, "Starting conversation sync for {}", conversation_id);
log::debug!(target: target::SYNC, "Starting conversation sync for {}", conversation_id);
let mut client = Self::get_client_impl(database).await?;
@@ -391,7 +391,7 @@ impl Daemon {
signal_sender.send(Signal::MessagesUpdated(conversation_id.clone())).await?;
}
log::info!(target: target::SYNC, "Synchronized {} messages for conversation {}", num_messages, &conversation_id);
log::debug!(target: target::SYNC, "Synchronized {} messages for conversation {}", num_messages, &conversation_id);
Ok(())
}