mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-10-02 15:24:47 +00:00

## Motivation These are incorrect: currently, when you have a `None` layer, the `None` hint it returns causes the default `TRACE` to win, which is inaccurate. Similarly, `Vec` should default to `OFF` if it has no `Layer`s in it ## Solution Change the default hints to `Some(OFF)` Co-authored-by: Eliza Weisman <eliza@buoyant.io>
20 lines
597 B
Rust
20 lines
597 B
Rust
#![cfg(feature = "registry")]
|
|
use tracing::level_filters::LevelFilter;
|
|
use tracing::Subscriber;
|
|
use tracing_subscriber::prelude::*;
|
|
|
|
#[test]
|
|
fn just_empty_vec() {
|
|
// Just a None means everything is off
|
|
let subscriber = tracing_subscriber::registry().with(Vec::<LevelFilter>::new());
|
|
assert_eq!(subscriber.max_level_hint(), Some(LevelFilter::OFF));
|
|
}
|
|
|
|
#[test]
|
|
fn layer_and_empty_vec() {
|
|
let subscriber = tracing_subscriber::registry()
|
|
.with(LevelFilter::INFO)
|
|
.with(Vec::<LevelFilter>::new());
|
|
assert_eq!(subscriber.max_level_hint(), Some(LevelFilter::INFO));
|
|
}
|