Debug-message
Print debug messages if the DEBUG environment variable is set
Usage
use debug;
For more code examples check out the usage.rs example.
License
This project is distributed under the MIT license.
Print debug messages if the DEBUG environment variable is set
use debug_message::debug;
fn main() {
println!("this will be printed every time");
debug("this will only be printed if the DEBUG env var is set");
}
For more code examples check out the usage.rs example.
This project is distributed under the MIT license.