Skip to content

Commit 87c275a

Browse files
committed
🔊 - Only show progress when exactly at 'Info'
1 parent cd7af11 commit 87c275a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ fn main() {
101101

102102
// The 'normal run' mode will show the 'pretty' formatted progress. But if we turn off the log
103103
// level, we should never show that.
104-
let show_progress = log_level_filter != LevelFilter::Off;
104+
let show_progress = log_level_filter == LevelFilter::Info;
105105

106106
match lock::get(&folder) {
107107
lock::Lock::Error(ref e) => {

0 commit comments

Comments
 (0)