Skip to content

Commit

Permalink
fix: max_level_debug
Browse files Browse the repository at this point in the history
Enables the `max_level_debug` feature in `log` to omit `trace` level
logs at compile-time. Omits the large number of logs generated
from `log_instrument::instrument` disabling  by default the
affect on the binary.

Signed-off-by: Jonathan Woollett-Light <[email protected]>
  • Loading branch information
Jonathan Woollett-Light committed Oct 9, 2023
1 parent 39bdb3a commit 4e2bd96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vmm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ versionize_derive = "0.1.5"
vm-allocator = "0.1.0"
vm-fdt = "0.2.0"
vm-superio = "0.7.0"
log = { version = "0.4.17", features = ["std", "serde"] }
log = { version = "0.4.17", features = ["std", "serde", "max_level_debug"] }
aes-gcm = { version = "0.10.1", default-features = false, features = ["aes"] }
base64 = "0.13.0"
bincode = "1.2.1"
Expand Down

0 comments on commit 4e2bd96

Please sign in to comment.