Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #8892 - nnethercote:shrink-progress-bar, r=alexcrichton
Shrink the progress bar, to give more space after it. Because: - A big progress bar isn't necessary. Making it smaller loses some precision, but a big bar isn't that precise in the first place. If you precision you can look at the percentage or ratio figure after the progress bar anyway. - A big bar sometimes obscures important info. For the "Building" step the crate names after the progress bar are important -- they make it clear how much parallelism is in the build. If you don't see that you're getting a much worse understanding of the build process. On an 80-char wide terminal, the change looks like this. Before: ``` Building [========> ] 18/105 ``` After: ``` Building [=======================> ] 97/105: goblin, pdb, symbolic-dem... ``` On a 100-char wide terminal, it looks like this. Before: ``` Building [============================> ] 56/105: cpp_demangle(bu... ``` After: ``` Building [============> ] 56/105: byteorder, proc-macro2, pest, gimli, cpp_dema... ```
- Loading branch information