Home
last modified time | relevance | path

Searched refs:current_span (Results 1 – 13 of 13) sorted by relevance

/third_party/rust/crates/tracing/tracing-core/src/
Dsubscriber.rs464 fn current_span(&self) -> span::Current { in current_span() method
773 fn current_span(&self) -> span::Current { in current_span() function
774 self.as_ref().current_span() in current_span()
858 fn current_span(&self) -> span::Current { in current_span() function
859 self.as_ref().current_span() in current_span()
Ddispatcher.rs686 pub fn current_span(&self) -> span::Current { in current_span() method
687 self.subscriber.current_span() in current_span()
/third_party/rust/crates/tracing/tracing-subscriber/src/layer/
Dcontext.rs66 pub fn current_span(&self) -> span::Current { in current_span() function
68 .map(Subscriber::current_span) in current_span()
261 let current = subscriber.current_span(); in lookup_current()
Dlayered.rs204 fn current_span(&self) -> span::Current { in current_span() function
205 self.inner.current_span() in current_span()
/third_party/rust/crates/tracing/tracing-subscriber/src/fmt/format/
Djson.rs253 let current_span = if self.format.display_current_span || self.format.display_span_list in format_event() localVariable
290 if let Some(ref span) = current_span { in format_event()
297 if self.format.display_span_list && current_span.is_some() { in format_event()
/third_party/rust/crates/tracing/examples/examples/
Dtower-server.rs59 if let Some(current) = dispatch.current_span().id() { in call()
/third_party/rust/crates/tracing/tracing-subscriber/src/registry/
Dsharded.rs241 self.current_span().id().map(|id| self.clone_span(id)) in new_span()
330 fn current_span(&self) -> Current { in current_span() method
/third_party/rust/crates/tracing/tracing-subscriber/src/fmt/
Dmod.rs423 fn current_span(&self) -> span::Current { in current_span() function
424 self.inner.current_span() in current_span()
Dfmt_layer.rs1070 pub fn current_span(&self) -> Current { in current_span() function
1071 self.ctx.current_span() in current_span()
/third_party/rust/crates/tracing/tracing/src/
Dspan.rs551 if let Some((id, meta)) = dispatch.current_span().into_inner() { in current()
/third_party/rust/crates/tracing/tracing-mock/src/
Dsubscriber.rs460 fn current_span(&self) -> tracing_core::span::Current { in current_span() function
/third_party/rust/crates/tracing/tracing-subscriber/
DCHANGELOG.md687 - **fmt**: Added `FmtContext::current_span()` method, returning the current span
1166 - Spans not being closed properly when `FmtSubscriber::current_span` is used
1184 - `Layered` subscribers not properly forwarding calls to `current_span`
/third_party/rust/crates/tracing/tracing-core/
DCHANGELOG.md485 - `Subscriber::current_span` API to return the current span (#148).