Skip to content

Commit ca600f1

Browse files
authored
Merge pull request #94 from BTOdell/feature/is_set
Add `is_present` public function
2 parents 6420685 + ef15043 commit ca600f1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/lib.rs

+6
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,12 @@ impl<L: LogLevel> Verbosity<L> {
9999
}
100100
}
101101

102+
/// Whether any verbosity flags (either `--verbose` or `--quiet`)
103+
/// are present on the command line.
104+
pub fn is_present(&self) -> bool {
105+
self.verbose != 0 || self.quiet != 0
106+
}
107+
102108
/// Get the log level.
103109
///
104110
/// `None` means all output is disabled.

0 commit comments

Comments
 (0)