eztrace 0.1.0

Zero-fuss debug tracing macro
Documentation

Zero-fuss debug tracing macro.

Cargo.toml:

[dependencies]
eztrace = "*"

Usage:

#[macro_use]
extern crate eztrace;
# fn main() {
# let (my_variable, other_variable) = (42, 237);
trace!(my_variable, other_variable);
# }

Prints this:

my_variable, other_variable: 42 237