Skip to content

Commit

Permalink
Upgrade env_logger
Browse files Browse the repository at this point in the history
0.4 depends on log 0.3 and so misses out on module names.
  • Loading branch information
sfackler committed Jan 17, 2018
1 parent c5e21db commit a540a39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ crossbeam = "0.3"
crypto-hash = "0.3"
curl = "0.4.6"
docopt = "0.8.1"
env_logger = "0.4"
env_logger = "0.5"
failure = "0.1.1"
filetime = "0.1"
flate2 = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/bin/cargo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ See 'cargo help <command>' for more information on a specific command.
";

fn main() {
env_logger::init().unwrap();
env_logger::init();

let mut config = match Config::default() {
Ok(cfg) => cfg,
Expand Down

0 comments on commit a540a39

Please sign in to comment.