Crate eztrace[][src]

Expand description

Zero-fuss debug tracing macro.

Cargo.toml:

[dependencies]
eztrace = "*"

Usage:

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

Prints this:

my_variable, other_variable: 42 237

Macros

Prints out variables and their debug representation.