diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-09-17 18:54:44 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-09-17 18:54:44 +0100 |
commit | 1f41eb28e2ab4df86134c02bdf5bf8299b4db008 (patch) | |
tree | b1053581f11d8df5d216d71634d2ed0252d5edd1 /crates/ra_cli/src | |
parent | 9421d2a953516b392ae35446bc4f2206dd993c84 (diff) | |
parent | 9ad2cea25113befd4988785b98f92a6260969dfe (diff) |
Merge #1859
1859: show error log by default r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_cli/src')
-rw-r--r-- | crates/ra_cli/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_cli/src/main.rs b/crates/ra_cli/src/main.rs index ca9275cd4..7aacf515d 100644 --- a/crates/ra_cli/src/main.rs +++ b/crates/ra_cli/src/main.rs | |||
@@ -29,7 +29,7 @@ impl Verbosity { | |||
29 | } | 29 | } |
30 | 30 | ||
31 | fn main() -> Result<()> { | 31 | fn main() -> Result<()> { |
32 | Logger::with_env().start()?; | 32 | Logger::with_env_or_str("error").start()?; |
33 | 33 | ||
34 | let subcommand = match std::env::args_os().nth(1) { | 34 | let subcommand = match std::env::args_os().nth(1) { |
35 | None => { | 35 | None => { |