File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -1139,7 +1139,7 @@ impl Builder<'_> {
1139
1139
cargo. env ( "RUSTC_BACKTRACE_ON_ICE" , "1" ) ;
1140
1140
}
1141
1141
1142
- if self . is_verbose_than ( 1 ) {
1142
+ if self . verbosity >= 2 {
1143
1143
// This provides very useful logs especially when debugging build cache-related stuff.
1144
1144
cargo. env ( "CARGO_LOG" , "cargo::core::compiler::fingerprint=info" ) ;
1145
1145
}
Original file line number Diff line number Diff line change @@ -1087,11 +1087,6 @@ impl Build {
1087
1087
} )
1088
1088
}
1089
1089
1090
- /// Check if verbosity is greater than the `level`
1091
- pub fn is_verbose_than ( & self , level : usize ) -> bool {
1092
- self . verbosity > level
1093
- }
1094
-
1095
1090
fn info ( & self , msg : & str ) {
1096
1091
match self . config . get_dry_run ( ) {
1097
1092
DryRun :: SelfCheck => ( ) ,
You can’t perform that action at this time.
0 commit comments