From 64342b8acd0ef3accfafc90c7ebf17bf98fd38e6 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 17 Oct 2019 03:42:38 -0400 Subject: hide all logs except error logs for interactive subcommands this should let us use the logger more idiomatically without interfering with normal command output --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index be024d7..3322413 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ directories = "2" env_logger = "0.7" futures = "0.1" lazy_static = "1" -log = "0.4" +log = { version = "0.4", features = ["release_max_level_info"] } mio = "0.6" native-tls = "0.2" oauth2 = "3.0.0-alpha.3" # need the alpha for async support -- cgit v1.2.3-54-g00ecf