diff --git a/src/bin/annatto.rs b/src/bin/annatto.rs index 44ade3f7..05cbe149 100644 --- a/src/bin/annatto.rs +++ b/src/bin/annatto.rs @@ -161,7 +161,7 @@ fn convert(workflow_file: PathBuf, read_env: bool, in_memory: bool) -> Result<() pb.set_style(not_started_style.clone()); pb.set_prefix(format!("#{idx:<2}")); pb.set_message(s.to_string()); - pb.enable_steady_tick(Duration::from_millis(250)); + pb.enable_steady_tick(Duration::from_secs(1)); all_bars.insert(s, pb); } } diff --git a/src/exporter/table.rs b/src/exporter/table.rs index 250ca42c..7e21b1ca 100644 --- a/src/exporter/table.rs +++ b/src/exporter/table.rs @@ -209,7 +209,6 @@ impl Exporter for ExportTable { doc_node_to_start .into_iter() .try_for_each(move |(doc, start)| -> anyhow::Result<()> { - progress.info(&format!("Exporting {doc} as table"))?; self.export_document(graph, output_path, doc, start)?; progress.worked(1)?; Ok(())