Skip to content

Commit

Permalink
Bump env_logger from "0.10.2" to "0.11.3" (#1138)
Browse files Browse the repository at this point in the history
Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net>
  • Loading branch information
jcdubois authored Dec 10, 2024
1 parent cd0fe71 commit b383e56
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 11 deletions.
34 changes: 27 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion northstar-sextant/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ rust-version.workspace = true
anyhow = { version = "1.0.80", features = ["backtrace"] }
clap = { version = "4.4.18", features = ["derive"] }
colored = "2.1.0"
env_logger = "0.10.2"
env_logger = "0.11.3"
northstar-runtime = { version = "^0.9.3-pre", path = "../northstar-runtime", features = ["npk"] }
tempfile = "3.10.1"
zip = { version = "2.1.3", default-features = false }
2 changes: 1 addition & 1 deletion northstar-stress/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rust-version.workspace = true
[dependencies]
anyhow = { version = "1.0.80", features = ["backtrace"] }
clap = { version = "4.4.18", features = ["derive"] }
env_logger = "0.10.2"
env_logger = "0.11.3"
futures = { version = "0.3.29", default-features = false }
humantime = "2.1.0"
log = "0.4.22"
Expand Down
2 changes: 1 addition & 1 deletion northstar-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rust-version.workspace = true

[dependencies]
anyhow = { version = "1.0.80", features = ["backtrace"] }
env_logger = "0.10.2"
env_logger = "0.11.3"
futures = { version = "0.3.29", default-features = false }
lazy_static = "1.4.0"
log = "0.4.22"
Expand Down
2 changes: 1 addition & 1 deletion northstar-tests/src/logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pub fn init() {
.format(|buf, record| {
let elapsed = START.elapsed();
let timestamp = format!("{}.{:06}s", elapsed.as_secs(), elapsed.subsec_micros());
let level = buf.default_styled_level(record.metadata().level());
let level = buf.default_level_style(record.metadata().level());
let target = record
.target()
.strip_prefix("northstar_runtime::")
Expand Down

0 comments on commit b383e56

Please sign in to comment.