blob: f94c8a1fb7c4b7cd502df02b777c8d702d2833c7 [file] [log] [blame]
#![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);
}