Skip to content

Commit eff8703

Browse files
chore: Apply suggestions from code review
Co-authored-by: Nick <[email protected]>
1 parent 7a04633 commit eff8703

File tree

1 file changed

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

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -311,15 +311,15 @@ pub struct Tracing {
311311

312312
impl Tracing {
313313
/// The environment variable used to set the console log level filter.
314-
pub const CONSOLE_LOG_LEVEL: &str = "CONSOLE_LOG_LEVEL";
314+
pub const CONSOLE_LOG_LEVEL_ENV: &str = "CONSOLE_LOG_LEVEL";
315315
/// The environment variable used to set the rolling file log level filter.
316-
pub const FILE_LOG_LEVEL: &str = "FILE_LOG_LEVEL";
316+
pub const FILE_LOG_LEVEL_ENV: &str = "FILE_LOG_LEVEL";
317317
/// The filename used for the rolling file logs.
318318
pub const FILE_LOG_SUFFIX: &str = "tracing-rs.json";
319319
/// The environment variable used to set the OTEL log level filter.
320-
pub const OTEL_LOG_EXPORTER_LEVEL: &str = "OTEL_LOG_EXPORTER_LEVEL";
320+
pub const OTEL_LOG_EXPORTER_LEVEL_ENV: &str = "OTEL_LOG_EXPORTER_LEVEL";
321321
/// The environment variable used to set the OTEL trace level filter.
322-
pub const OTEL_TRACE_EXPORTER_LEVEL: &str = "OTEL_TRACE_EXPORTER_LEVEL";
322+
pub const OTEL_TRACE_EXPORTER_LEVEL_ENV: &str = "OTEL_TRACE_EXPORTER_LEVEL";
323323

324324
/// Creates and returns a [`TracingBuilder`].
325325
pub fn builder() -> TracingBuilder<builder_state::PreServiceName> {

0 commit comments

Comments
 (0)