Skip to content

Commit 7252312

Browse files
committed
Add a bit of padding in the syn2mas output
1 parent 741bc26 commit 7252312

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

crates/cli/src/commands/syn2mas.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,14 +173,14 @@ impl Options {
173173

174174
// Display errors and warnings
175175
if !check_errors.is_empty() {
176-
eprintln!("===== Errors =====");
176+
eprintln!("\n\n===== Errors =====");
177177
eprintln!("These issues prevent migrating from Synapse to MAS right now:\n");
178178
for error in &check_errors {
179179
eprintln!("• {error}\n");
180180
}
181181
}
182182
if !check_warnings.is_empty() {
183-
eprintln!("===== Warnings =====");
183+
eprintln!("\n\n===== Warnings =====");
184184
eprintln!(
185185
"These potential issues should be considered before migrating from Synapse to MAS right now:\n"
186186
);
@@ -234,6 +234,7 @@ impl Options {
234234

235235
// TODO progress reporting
236236
let mas_matrix = MatrixConfig::extract(figment)?;
237+
eprintln!("\n\n"); // padding above progress bar
237238
syn2mas::migrate(
238239
reader,
239240
writer,

0 commit comments

Comments
 (0)