Less chattier log when syncing
This commit is contained in:
@@ -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(())
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user