Skip to content

Commit

Permalink
Justfile - add features to logging example
Browse files Browse the repository at this point in the history
  • Loading branch information
marosset committed Jan 15, 2025
1 parent c3bb824 commit cfc7860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ gen-all-fbs-rust-code:
run-rust-examples target=default-target features="": (build-rust target)
cargo run --profile={{ if target == "debug" { "dev" } else { target } }} --example metrics {{ if features =="" {''} else { "--features " + features } }}
cargo run --profile={{ if target == "debug" { "dev" } else { target } }} --example metrics {{ if features =="" {"--features function_call_metrics"} else {"--features function_call_metrics," + features} }}
{{ set-trace-env-vars }} cargo run --profile={{ if target == "debug" { "dev" } else { target } }} --example logging
{{ set-trace-env-vars }} cargo run --profile={{ if target == "debug" { "dev" } else { target } }} --example logging {{ if features =="" {''} else { "--features " + features } }}

# The two tracing examples are flaky on windows so we run them on linux only for now, need to figure out why as they run fine locally on windows
run-rust-examples-linux target=default-target features="": (build-rust target) (run-rust-examples target features)
Expand Down

0 comments on commit cfc7860

Please sign in to comment.