A debug crate for rust inspired by NodeJS debug module.
toml
debug-rs = "0.1.0"
or using cargo-edit
sh
cargo add debug-rs
Here is the code in examples folder:
```rust
extern crate debug;
fn main() { debug!(666, 33, "aaa");
debug!(vec![1, 2, 3]);
} ```
Then run with environment variable DEBUG=debug
(because the examples' package name is still debug
):
If environment variable DEBUG
is undefined, then it won't print anything.
<package name>:<file name>
: e.g. DEBUG=debug*
DEBUG=debug:examples*,hyper*,
<package name>:<file name>:L<line number> ...custom variables
MIT