Skip to content

Commit 987356a

Browse files
vmagrometa-codesync[bot]
authored andcommitted
[antlir2][extract] set tracing level for extract_buck_binary_analyze
Summary: I see some weird failures on Sandcastle running this action but there's very little debugging information to go on because nothing set `RUST_LOG` env var. Just enable `TRACE` in code Test Plan: testhard Reviewed By: naveedgol Differential Revision: D88259851 fbshipit-source-id: 3dd8ee5b6cbdf93aefacadaf5fee478bb40127c2
1 parent 48e09f3 commit 987356a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

antlir/antlir2/features/extract/extract_buck_binary_analyze.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ struct Args {
3232
}
3333

3434
fn main() -> Result<()> {
35-
tracing_subscriber::fmt::init();
35+
tracing_subscriber::fmt()
36+
.with_max_level(tracing::Level::TRACE)
37+
.init();
3638
let args = Args::parse();
3739

3840
let default_interpreter = extract::default_interpreter(args.target_arch);

0 commit comments

Comments
 (0)