Skip to content

Commit

Permalink
actually enable valuable on tracing
Browse files Browse the repository at this point in the history
Summary: I thought `valuable` was enabled; it wasn't. Let's *actually* enable it.

Reviewed By: Wilfred

Differential Revision: D59301882

fbshipit-source-id: 60337d3b69f8babb4cd6f12d044fd2f856539056
  • Loading branch information
davidbarsky authored and facebook-github-bot committed Jul 3, 2024
1 parent 25d8632 commit cac2b4d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion detcore-model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ nix = "0.25"
reverie-syscalls = { version = "0.1.0", git = "https://github.com/facebookexperimental/reverie.git", branch = "main" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
shell-words = "1.1.0"
tracing = { version = "0.1.40", features = ["attributes"] }
tracing = { version = "0.1.40", features = ["attributes", "valuable"] }

[dev-dependencies]
pretty_assertions = { version = "1.2", features = ["alloc"], default-features = false }
2 changes: 1 addition & 1 deletion detcore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
tempfile = "3.8"
tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.40", features = ["attributes"] }
tracing = { version = "0.1.40", features = ["attributes", "valuable"] }

[dev-dependencies]
detcore-testutils = { version = "0.0.0", path = "tests/testutils" }
Expand Down
2 changes: 1 addition & 1 deletion detcore/tests/testutils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ reverie = { version = "0.1.0", git = "https://github.com/facebookexperimental/re
reverie-ptrace = { version = "0.1.0", git = "https://github.com/facebookexperimental/reverie.git", branch = "main" }
test-allocator = { version = "0.0.0", path = "../../../common/test-allocator" }
tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.40", features = ["attributes"] }
tracing = { version = "0.1.40", features = ["attributes", "valuable"] }
tracing-subscriber = { version = "0.3.18", features = ["chrono", "env-filter", "json", "local-time", "parking_lot", "registry"] }
2 changes: 1 addition & 1 deletion hermit-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_de
shell-words = "1.1.0"
tempfile = "3.8"
tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.40", features = ["attributes"] }
tracing = { version = "0.1.40", features = ["attributes", "valuable"] }
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.18", features = ["chrono", "env-filter", "json", "local-time", "parking_lot", "registry"] }
uuid = { version = "1.2", features = ["serde", "v4", "v5", "v6", "v7", "v8"] }
2 changes: 1 addition & 1 deletion hermit-verify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rand = { version = "0.8", features = ["small_rng"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
similar = { version = "2.2.0", features = ["inline"] }
tempfile = "3.8"
tracing = { version = "0.1.40", features = ["attributes"] }
tracing = { version = "0.1.40", features = ["attributes", "valuable"] }

[dev-dependencies]
pretty_assertions = { version = "1.2", features = ["alloc"], default-features = false }

0 comments on commit cac2b4d

Please sign in to comment.