summaryrefslogtreecommitdiff
path: root/src/commands/mount.rs
diff options
context:
space:
mode:
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)
}