Skip to content

Commit a4b29b5

Browse files
committed
default verbosity to 1
1 parent 8b9bd93 commit a4b29b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/src/core/config/flags.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ impl Flags {
227227
let mut exec_ctx = ExecutionContext::new();
228228
let flags = Flags::parse_from(normalize_args(args));
229229
exec_ctx.set_dry_run(if flags.dry_run { DryRun::UserSelected } else { DryRun::Disabled });
230-
exec_ctx.set_verbose(flags.verbose);
230+
exec_ctx.set_verbose(1);
231231
exec_ctx.set_fail_fast(flags.cmd.fail_fast());
232232
(flags, exec_ctx)
233233
}

0 commit comments

Comments
 (0)