Skip to content

Commit b626753

Browse files
reivilibresandhose
authored andcommitted
Add a bit of padding in the syn2mas output
1 parent 2f83f60 commit b626753

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
@@ -171,14 +171,14 @@ impl Options {
171171

172172
// Display errors and warnings
173173
if !check_errors.is_empty() {
174-
eprintln!("===== Errors =====");
174+
eprintln!("\n\n===== Errors =====");
175175
eprintln!("These issues prevent migrating from Synapse to MAS right now:\n");
176176
for error in &check_errors {
177177
eprintln!("• {error}\n");
178178
}
179179
}
180180
if !check_warnings.is_empty() {
181-
eprintln!("===== Warnings =====");
181+
eprintln!("\n\n===== Warnings =====");
182182
eprintln!("These potential issues should be considered before migrating from Synapse to MAS right now:\n");
183183
for warning in &check_warnings {
184184
eprintln!("• {warning}\n");
@@ -230,6 +230,7 @@ impl Options {
230230
let mut rng = thread_rng();
231231

232232
let mas_matrix = MatrixConfig::extract(figment)?;
233+
eprintln!("\n\n"); // padding above progress bar
233234
syn2mas::migrate(
234235
reader,
235236
writer,

0 commit comments

Comments
 (0)