okstd 2.0.1

The standard library that's ok
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
### `okstd::log`

```rust
#[cfg(feature = "macros")]
{
    use okstd::prelude::*;

    #[okstd::log(debug)]
    fn something() {
        debug!("Hello, world!");
        println!("Hello, world!");
    }
}
```