This commit is contained in:
Anatoly Yakovenko 2018-05-24 23:28:23 +00:00 committed by Greg Fitzgerald
parent 1022f1b0c6
commit 83c11f0f9d
1 changed files with 2 additions and 2 deletions

View File

@ -62,10 +62,10 @@ impl<'a> EntryWriter<'a> {
) -> Result<()> {
let mut q = VecDeque::new();
let list = self.write_entries(writer, entry_receiver)?;
info!("New blobs? {}", list.len());
trace!("New blobs? {}", list.len());
ledger::process_entry_list_into_blobs(&list, blob_recycler, &mut q);
if !q.is_empty() {
info!("broadcasting {}", q.len());
trace!("broadcasting {}", q.len());
broadcast.send(q)?;
}
Ok(())