File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -171,14 +171,14 @@ impl Options {
171
171
172
172
// Display errors and warnings
173
173
if !check_errors. is_empty ( ) {
174
- eprintln ! ( "===== Errors =====" ) ;
174
+ eprintln ! ( "\n \n ===== Errors =====" ) ;
175
175
eprintln ! ( "These issues prevent migrating from Synapse to MAS right now:\n " ) ;
176
176
for error in & check_errors {
177
177
eprintln ! ( "• {error}\n " ) ;
178
178
}
179
179
}
180
180
if !check_warnings. is_empty ( ) {
181
- eprintln ! ( "===== Warnings =====" ) ;
181
+ eprintln ! ( "\n \n ===== Warnings =====" ) ;
182
182
eprintln ! ( "These potential issues should be considered before migrating from Synapse to MAS right now:\n " ) ;
183
183
for warning in & check_warnings {
184
184
eprintln ! ( "• {warning}\n " ) ;
@@ -230,6 +230,7 @@ impl Options {
230
230
let mut rng = thread_rng ( ) ;
231
231
232
232
let mas_matrix = MatrixConfig :: extract ( figment) ?;
233
+ eprintln ! ( "\n \n " ) ; // padding above progress bar
233
234
syn2mas:: migrate (
234
235
reader,
235
236
writer,
You can’t perform that action at this time.
0 commit comments