Hey,
Is it possible to remove or change "warp drive engaged"?
Best regards
As a "workaround" (I personally don't mind the message), I have a CLI arg, verbosity, and configure my logger like:
#[derive(Debug, structopt::StructOpt)]
struct Args {
/// Increases the verbosity of logging.
#[structopt(short = "v", long = "verbose", parse(from_occurrences))]
pub verbosity: usize,
// ...
}
#[paw::main]
fn main(args: Args) -> Result<()> {
let mut logger = stderrlog::new();
if args.verbosity < 3 {
logger.module(module_path!()).verbosity(2 + args.verbosity);
} else {
logger.verbosity(args.verbosity);
}
logger.init().unwrap();
// ...
}
Oh heh, that was me having some fun while writing the library. Is it actually problematic? How come?
Hey hey
It's fun, but if you can add as a feature it could be better!
Most helpful comment
Oh heh, that was me having some fun while writing the library. Is it actually problematic? How come?