Stop the spinner and print an `(unsuccessful) {msg}` line in red.
(self, msg: &str)
| 153 | |
| 154 | /// Stop the spinner and print an `(unsuccessful) {msg}` line in red. |
| 155 | pub fn fail(self, msg: &str) { |
| 156 | drop(self); |
| 157 | if plain() { |
| 158 | eprintln!(" (unsuccessful) {msg}"); |
| 159 | } else { |
| 160 | eprintln!(" {} {msg}", "(unsuccessful)".red()); |
| 161 | } |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | impl Drop for Spinner { |