From b6b1901741bc09eefee8a46d015edfeea1f3d6c1 Mon Sep 17 00:00:00 2001 From: Olivier 'reivilibre Date: Sat, 1 Feb 2025 17:26:27 +0000 Subject: [PATCH] Add a bit of padding in the syn2mas output --- crates/cli/src/commands/syn2mas.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crates/cli/src/commands/syn2mas.rs b/crates/cli/src/commands/syn2mas.rs index 314ceaeb6..5b377d232 100644 --- a/crates/cli/src/commands/syn2mas.rs +++ b/crates/cli/src/commands/syn2mas.rs @@ -173,14 +173,14 @@ impl Options { // Display errors and warnings if !check_errors.is_empty() { - eprintln!("===== Errors ====="); + eprintln!("\n\n===== Errors ====="); eprintln!("These issues prevent migrating from Synapse to MAS right now:\n"); for error in &check_errors { eprintln!("• {error}\n"); } } if !check_warnings.is_empty() { - eprintln!("===== Warnings ====="); + eprintln!("\n\n===== Warnings ====="); eprintln!( "These potential issues should be considered before migrating from Synapse to MAS right now:\n" ); @@ -234,6 +234,7 @@ impl Options { // TODO progress reporting let mas_matrix = MatrixConfig::extract(figment)?; + eprintln!("\n\n"); // padding above progress bar syn2mas::migrate( reader, writer,