summaryrefslogtreecommitdiff
path: root/src/commands/mount.rs
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2024-07-15 23:16:55 -0400
committerKent Overstreet <kent.overstreet@linux.dev>2024-07-15 23:20:54 -0400
commit07913d1185aad0aa730804392c39a138beb08931 (patch)
tree96763040cec4779f042d4717b84aae6fa610d48f /src/commands/mount.rs
parente084e9f65bace1d8456199530a83132147013417 (diff)
logging: kill quiet optionv1.9.4
no logging by default, enabled with -v logging by default broke fstests Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'src/commands/mount.rs')
-rw-r--r--src/commands/mount.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/commands/mount.rs b/src/commands/mount.rs
index 235a1825..e01f5388 100644
--- a/src/commands/mount.rs
+++ b/src/commands/mount.rs
@@ -250,10 +250,6 @@ pub struct Cli {
#[arg(short, long, action = clap::ArgAction::Set, default_value_t=stdout().is_terminal())]
colorize: bool,
- /// Quiet mode
- #[arg(short, long)]
- quiet: bool,
-
/// Verbose mode
#[arg(short, long, action = clap::ArgAction::Count)]
verbose: u8,
@@ -383,7 +379,7 @@ pub fn mount(mut argv: Vec<String>, symlink_cmd: Option<&str>) -> Result<()> {
let cli = Cli::parse_from(argv);
// TODO: centralize this on the top level CLI
- logging::setup(cli.quiet, cli.verbose, cli.colorize);
+ logging::setup(cli.verbose, cli.colorize);
cmd_mount_inner(&cli)
}