A debug crate for rust inspired by NodeJS debug module.
toml
debug-rs = "*"
or using cargo-edit
sh
cargo add debug-rs
Here is the code in examples folder:
```rust
extern crate debug_rs;
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.
Running with env variables in windows shell might be a little different:
sh
DEBUG=*,-not_this cargo run // for *unix
// or
set DEBUG=*,-not_this; cargo run // for windows
// or
$env:DEBUG = "*,-not_this"; cargo run // for PowerShell
<package name>:<file name>
: e.g. DEBUG=debug*
DEBUG=debug:examples*,hyper*,
DEBUG=*,-not_this*
<package name>:<file name>:L<line number> ...custom variables
debug_build_only
feature can make debug macro won't generate any code in release mode, and default is turn on. you can disable it by config features in Cargo.toml.
Working in release mode: ```toml
[dependencies] debug-rs = { version = "*", default-features=false } ```
Controlled by features:
toml
[dependencies]
debug-rs = { version = "*", default-features=false, features=["disable"] }
MIT