# build_log
Colored logging macros for Cargo build scripts.
## Example
```rust
use build_log as log;
fn main() {
log::info!("starting build step");
log::warning!("using fallback configuration");
}
```
If `DBG_PRINT=1` is present in the environment, the macros emit `cargo:warning=` lines so the messages stay visible in Cargo build output.