From 548f4106bc074201a023f80e8550a5311455b775 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sat, 21 Jul 2018 20:10:23 -0700 Subject: [PATCH] Couldn't get -verbose to work, remove it. --- src/main.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index eb4195b..3aad3a5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -384,9 +384,6 @@ fn init_scene(width: usize, height: usize, n_subsamples: usize, n_aosamples: usi #[derive(StructOpt, Debug)] #[structopt()] struct Opt { - /// Verbose mode (-v, -vv, -vvv, etc) - #[structopt(short = "v", long = "verbose", parse(from_occurrences), default_value = "vvv")] - verbose: usize, #[structopt(short = "w", long = "width", default_value = "512")] width: usize, #[structopt(short = "h", long = "height", default_value = "512")] @@ -400,7 +397,7 @@ struct Opt { fn main() -> std::io::Result<()> { let opt = Opt::from_args(); stderrlog::new() - .verbosity(opt.verbose) + .verbosity(3) .timestamp(stderrlog::Timestamp::Millisecond) .init() .unwrap();