From e5ccbac220b1f14e3cede1b55bad92a4f537c8c9 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 18 Apr 2020 05:15:34 -0400 Subject: enable env_logger in the main app --- src/bin/rbw/main.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bin/rbw/main.rs b/src/bin/rbw/main.rs index 45f1985..5bd6032 100644 --- a/src/bin/rbw/main.rs +++ b/src/bin/rbw/main.rs @@ -5,6 +5,11 @@ mod commands; mod sock; fn main() { + env_logger::from_env( + env_logger::Env::default().default_filter_or("info"), + ) + .init(); + let matches = clap::App::new("rbw") .about("unofficial bitwarden cli") .author(clap::crate_authors!()) -- cgit v1.2.3-54-g00ecf