macro_rules! trace_var { ($var: expr) => { ... }; }
Logs a variable and its value, if at RUST_LOG=trace.
let five = 5; trace_var!(five);