@@ -368,8 +368,10 @@ impl TracingBuilder<builder_state::PreServiceName> {
368368
369369impl TracingBuilder < builder_state:: Config > {
370370 /// Enable the console output tracing subscriber and set the default
371- /// [`LevelFilter`] which is overridable through the given environment
371+ /// [`LevelFilter`][1] which is overridable through the given environment
372372 /// variable.
373+ ///
374+ /// [1]: tracing_subscriber::filter::LevelFilter
373375 pub fn with_console_output (
374376 self ,
375377 console_log_settings : ConsoleLogSettings ,
@@ -383,11 +385,13 @@ impl TracingBuilder<builder_state::Config> {
383385 }
384386 }
385387
386- /// Enable the OTLP logging subscriber and set the default [`LevelFilter`]
388+ /// Enable the OTLP logging subscriber and set the default [`LevelFilter`][1]
387389 /// which is overridable through the given environment variable.
388390 ///
389391 /// You can configure the OTLP log exports through the variables defined
390392 /// in the opentelemetry crates. See [`Tracing`].
393+ ///
394+ /// [1]: tracing_subscriber::filter::LevelFilter
391395 pub fn with_otlp_log_exporter (
392396 self ,
393397 otlp_log_settings : OtlpLogSettings ,
@@ -401,11 +405,13 @@ impl TracingBuilder<builder_state::Config> {
401405 }
402406 }
403407
404- /// Enable the OTLP tracing subscriber and set the default [`LevelFilter`]
408+ /// Enable the OTLP tracing subscriber and set the default [`LevelFilter`][1]
405409 /// which is overridable through the given environment variable.
406410 ///
407411 /// You can configure the OTLP trace exports through the variables defined
408412 /// in the opentelemetry crates. See [`Tracing`].
413+ ///
414+ /// [1]: tracing_subscriber::filter::LevelFilter
409415 pub fn with_otlp_trace_exporter (
410416 self ,
411417 otlp_trace_settings : OtlpTraceSettings ,
0 commit comments