Skip to content

Commit

Permalink
Fix print verbosity check
Browse files Browse the repository at this point in the history
  • Loading branch information
DelevoXDG committed Nov 5, 2024
1 parent eb2f726 commit d82fd9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/scarb-ui/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ impl Ui {

/// Print the message to standard output if not in quiet verbosity mode.
pub fn print<T: Message>(&self, message: T) {
if self.verbosity >= Verbosity::Normal {
if self.verbosity > Verbosity::Quiet {
self.do_print(message);
}
}
Expand Down

0 comments on commit d82fd9a

Please sign in to comment.