clap-rs / clap-log-flag

Add a logger to CLIs using structopt
Apache License 2.0
10 stars 1 forks source link

Filter not working as intended #4

Open yoshuawuyts opened 6 years ago

yoshuawuyts commented 6 years ago

The following code doesn't log anything out:

  let name = env!("CARGO_PKG_NAME");
  args.logger.log(args.verbosity.log_level(), name)?;

I'm pretty sure there's a bug in our log filter. log_all() does work as intended.