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