The crate you never use.
Blargle provides several macros that allow for the printing of debug statements. However, this is only case when compiling for debug mode. When compiling for release mode, all of the macros generate compiler errors. The idea is that you would use these macros when trying to diagnose some problem in your code but, when it was time to build for production, the compiler errors would remind you that you had accidentally left them in.
E.g.,
println!;
For debug builds, this would resolve to
println!;
Similarly, there are macros for print, eprintln, eprint, and dbg.
log feature
If you enable the log feature, you will have access to wrappers around the log crates macros. E.g.,
log_info!;
Placeholder
There is one last macro, blargle::placeholder!(). For debug builds, it resolves to a no op. However, it generates a compiler error for release builds. As the name suggests, this macro represents functionalitiy which you've yet to implement. E.g.,