1//! [Subscribers](crate::subscribe) that control which spans and events are
2//! enabled by the wrapped collector.
3//!
4//! This module contains a number of types that provide implementations of
5//! various strategies for filtering which spans and events are enabled. For
6//! details on filtering spans and events using [`Subscribe`] implementations,
7//! see the [`subscribe` module documentation].
8//!
9//! [`subscribe` module documentation]: crate::subscribe#filtering-with-subscribers
10//! [`Subscribe`]: crate::subscribe
11mod filter_fn;
12mod level;
1314feature! {
15#![all(feature = "env-filter", feature = "std")]
16mod env;
17pub use self::env::*;
18}
1920feature! {
21#![all(feature = "registry", feature = "std")]
22mod subscriber_filters;
23pub use self::subscriber_filters::*;
24}
2526pub use self::filter_fn::*;
27#[cfg(not(feature = "registry"))]
28pub(crate) use self::has_psf_stubs::*;
2930pub use self::level::{LevelFilter, ParseError as LevelParseError};
3132#[cfg(not(all(feature = "registry", feature = "std")))]
33#[allow(unused_imports)]
34pub(crate) use self::has_psf_stubs::*;
3536feature! {
37#![any(feature = "std", feature = "alloc")]
38pub mod targets;
39pub use self::targets::Targets;
4041mod directive;
42pub use self::directive::ParseError;
43}
4445/// Stub implementations of the per-subscriber-filter detection functions for
46/// when the `registry` feature is disabled.
47#[cfg(not(all(feature = "registry", feature = "std")))]
48mod has_psf_stubs {
49pub(crate) fn is_psf_downcast_marker(_: core::any::TypeId) -> bool {
50false
51}
5253/// Does a type implementing `Collect` contain any per-subscriber filters?
54pub(crate) fn collector_has_psf<C>(_: &C) -> bool
55where
56C: tracing_core::Collect,
57 {
58false
59}
6061/// Does a type implementing `Subscribe` contain any per-subscriber filters?
62pub(crate) fn subscriber_has_psf<S, C>(_: &S) -> bool
63where
64S: crate::Subscribe<C>,
65 C: tracing_core::Collect,
66 {
67false
68}
69}