Crate eztrace[][src]

Zero-fuss debug tracing macro.

Cargo.toml:

[dependencies]
eztrace = "*"

Usage:

#[macro_use]
extern crate eztrace;
trace!(my_variable, other_variable);

Prints this:

my_variable, other_variable: 42 237

Macros

trace

Prints out variables and their debug representation.