insomnilog 0.2.0

An asynchronous Rust logging library that never sleeps
Documentation
1
2
3
4
5
6
7
8
9
# Quick start

This chapter walks through the minimum code needed to get `insomnilog` logging
to the console. For a deeper explanation of what each piece does, see
[Core concepts](core_concepts.md).

```rust
{{#include ../examples/quick_start.rs}}
```