diff --git a/tracing-core/src/subscriber.rs b/tracing-core/src/subscriber.rs index ec9afd1f..05860936 100644 --- a/tracing-core/src/subscriber.rs +++ b/tracing-core/src/subscriber.rs @@ -320,10 +320,11 @@ pub trait Subscriber: 'static { id.clone() } - /// **This method is soft-deprecated.** + /// **This method is deprecated.** /// - /// Although using it won’t cause compilation warning, new code should - /// call or implement [`try_close`] instead. + /// Using `drop_span` may result in subscribers composed using + /// `tracing-subscriber` crate's `Layer` trait from observing close events. + /// Use [`try_close`] instead. /// /// The default implementation of this function does nothing. ///