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 {
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,
You can’t perform that action at this time.
0 commit comments