Skip to content

Commit a540a39

Browse files
committed
Upgrade env_logger
0.4 depends on log 0.3 and so misses out on module names.
1 parent c5e21db commit a540a39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ crossbeam = "0.3"
2323
crypto-hash = "0.3"
2424
curl = "0.4.6"
2525
docopt = "0.8.1"
26-
env_logger = "0.4"
26+
env_logger = "0.5"
2727
failure = "0.1.1"
2828
filetime = "0.1"
2929
flate2 = "1.0"

src/bin/cargo.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ See 'cargo help <command>' for more information on a specific command.
7575
";
7676

7777
fn main() {
78-
env_logger::init().unwrap();
78+
env_logger::init();
7979

8080
let mut config = match Config::default() {
8181
Ok(cfg) => cfg,

0 commit comments

Comments
 (0)