[go: up one dir, main page]

slog 2.0.0-alpha.3

Structured, composable logging for Rust
Documentation
1
2
3
4
5
6
7
8

    fn filter_level(self,
                    level: Level)
                    -> Filter<Self, impl Fn(&Record) -> bool>
        where Self: Sized
    {
        Filter::new(self, |r| r.level().is_at_least(level))
    }