Skip to content

Commit 18246db

Browse files
committed
chore: update env_logger to 0.9.0
1 parent c8c59f9 commit 18246db

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ travis-ci = { repository = "https://github.com/witnet/witnet-rust", branch = "ma
2626
ansi_term = "0.12.1"
2727
bytecount = "0.6.0"
2828
ctrlc = "3.1.3"
29-
env_logger = "0.7.1"
29+
env_logger = "0.9.0"
3030
failure = "0.1.8"
3131
futures = "0.3.8"
3232
hex = "0.4.1"

bridges/centralized-ethereum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2018"
88
actix = { version = "0.12.0", default-features = false }
99
async-jsonrpc-client = { git = "https://github.com/witnet/async-jsonrpc-client", features = ["tcp"], branch = "fix-tcp-leak" }
1010
ctrlc = "3.1.3"
11-
env_logger = "0.7.1"
11+
env_logger = "0.9.0"
1212
futures-util = { version = "0.3.8", features = ["compat"] }
1313
hex = "0.4.3"
1414
log = "0.4.8"

bridges/ethereum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66

77
[dependencies]
88
async-jsonrpc-client = { git = "https://github.com/witnet/async-jsonrpc-client", features = ["tcp"], branch = "fix-tcp-leak" }
9-
env_logger = "0.7.1"
9+
env_logger = "0.9.0"
1010
ethabi = "9.0.0"
1111
futures = "0.1.28"
1212
futures-locks = "0.5.0"

src/cli/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ fn configure_logger(opts: &LogOptions) -> env_logger::Builder {
8383
} else {
8484
None
8585
})
86-
.format_module_path(opts.module_path)
86+
.format_target(opts.module_path)
8787
.filter_level(log::LevelFilter::Info)
8888
.filter_module("witnet", opts.level)
8989
.filter_module("witnet_node", opts.level)

0 commit comments

Comments
 (0)