summaryrefslogtreecommitdiffstats
path: root/vendor/tracing-subscriber-0.3.3/tests/registry_max_level_hint.rs
blob: f94c8a1fb7c4b7cd502df02b777c8d702d2833c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![cfg(all(feature = "registry", feature = "fmt"))]
use tracing_subscriber::{filter::LevelFilter, prelude::*};

#[test]
fn registry_sets_max_level_hint() {
    tracing_subscriber::registry()
        .with(tracing_subscriber::fmt::layer())
        .with(LevelFilter::DEBUG)
        .init();
    assert_eq!(LevelFilter::current(), LevelFilter::DEBUG);
}