# urlogger





A template for a new Rust project
**[Full documentation →](https://docs.rs/urlogger/)**
## Quick start
```sh
cargo add urlogger
```
## Usage
```rust
//! Demo: logs at all levels. Use `RUST_LOG=info` to filter.
use urlogger::{LogLevel, log};
fn main() {
log(LogLevel::Trace, "Hello, world!");
log(LogLevel::Debug, "Hello, world!");
log(LogLevel::Info, "Hello, world!");
log(LogLevel::Warn, "Hello, world!");
log(LogLevel::Error, "Hello, world!");
}
```
## License
Published under the [Apache-2.0](./LICENSE) license.
Made by [@UnRUST](https://github.com/un-rust) 💛
<br><br>
<a href="https://github.com/un-rust/urlogger/graphs/contributors">
<img src="https://contrib.rocks/image?repo=un-rust/urlogger" />
</a>
---
_🛠️ auto updated with [automd-rs](https://github.com/betterhyq/automd-rs)_