Logging
Node logs are worth one note of their own. A node runs as a loaded library with its own log dispatcher, so
tracing::info! from your tick() goes to stderr while the host’s own logs go to stdout. The filter is RUST_LOG as captured when the graph started, an empty value means info, and RUST_LOG=off silences node-side logs entirely.
Networking
Recording and capture
Visualization
Live-run tuning
These affect how the live loop idles and how work is spread across cores. Reach for them when you are chasing latency, not before.Build
Related
CLI reference
The flags that override several of these variables.
Network a graph
What the network variables change in practice.