Some development tools
Add this to your Cargo.toml: ```toml [dependencies] log = "0.4"
[dev-dependencies] dev_util = "0.1" ```
```rust
mod tests { use devutil::log::loginit; #[test] fn itworks() { log::info!("log is't initialized, you can't see me"); loginit(); log::info!("log is initialized"); } }
```