Skip to content

Commit 2c4fd20

Browse files
committed
chore: Fix doc comment references
1 parent 6cd05b8 commit 2c4fd20

File tree

1 file changed

+4
-12
lines changed
  • crates/stackable-telemetry/src/tracing

1 file changed

+4
-12
lines changed

crates/stackable-telemetry/src/tracing/mod.rs

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -583,10 +583,8 @@ impl TracingBuilder<builder_state::PreServiceName> {
583583

584584
impl TracingBuilder<builder_state::Config> {
585585
/// Enable the console output tracing subscriber and set the default
586-
/// [`LevelFilter`][1] which is overridable through the given environment
586+
/// [`LevelFilter`] which is overridable through the given environment
587587
/// variable.
588-
///
589-
/// [1]: tracing_subscriber::filter::LevelFilter
590588
pub fn with_console_output(
591589
self,
592590
console_log_settings: impl Into<ConsoleLogSettings>,
@@ -602,10 +600,8 @@ impl TracingBuilder<builder_state::Config> {
602600
}
603601

604602
/// Enable the file output tracing subscriber and set the default
605-
/// [`LevelFilter`][1] which is overridable through the given environment
603+
/// [`LevelFilter`] which is overridable through the given environment
606604
/// variable.
607-
///
608-
/// [1]: tracing_subscriber::filter::LevelFilter
609605
pub fn with_file_output(
610606
self,
611607
file_log_settings: impl Into<FileLogSettings>,
@@ -620,13 +616,11 @@ impl TracingBuilder<builder_state::Config> {
620616
}
621617
}
622618

623-
/// Enable the OTLP logging subscriber and set the default [`LevelFilter`][1]
619+
/// Enable the OTLP logging subscriber and set the default [`LevelFilter`]
624620
/// which is overridable through the given environment variable.
625621
///
626622
/// You can configure the OTLP log exports through the variables defined
627623
/// in the opentelemetry crates. See [`Tracing`].
628-
///
629-
/// [1]: tracing_subscriber::filter::LevelFilter
630624
pub fn with_otlp_log_exporter(
631625
self,
632626
otlp_log_settings: impl Into<OtlpLogSettings>,
@@ -641,13 +635,11 @@ impl TracingBuilder<builder_state::Config> {
641635
}
642636
}
643637

644-
/// Enable the OTLP tracing subscriber and set the default [`LevelFilter`][1]
638+
/// Enable the OTLP tracing subscriber and set the default [`LevelFilter`]
645639
/// which is overridable through the given environment variable.
646640
///
647641
/// You can configure the OTLP trace exports through the variables defined
648642
/// in the opentelemetry crates. See [`Tracing`].
649-
///
650-
/// [1]: tracing_subscriber::filter::LevelFilter
651643
pub fn with_otlp_trace_exporter(
652644
self,
653645
otlp_trace_settings: impl Into<OtlpTraceSettings>,

0 commit comments

Comments
 (0)