pub const FEATURE_TARGETS: &[&str];Expand description
Targets carrying the runtime’s own internal diagnostics.
These are firehoses — gc logs every collection decision, env every
symbol lookup — so base_filter pins them off rather than letting a
blanket --debug turn them all on at once. Name the ones you want:
-X debug:gc,jit, CLJRS_X_FLAG=trace:env, or RUST_LOG=gc=debug.
| Target | Emitted by |
|---|---|
gc | cljrs-gc: collection cycles, region allocation |
env | cljrs-runtime::env: symbol lookup |
ir | cljrs-runtime::tiered: lowering, IR interpretation, cache eviction |
jit | cljrs-runtime::tiered and cljrs-compiler::jit: promotion, compilation, code-cache reclamation |