File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
crates/stackable-telemetry/src/tracing Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -311,15 +311,15 @@ pub struct Tracing {
311311
312312impl 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 > {
You can’t perform that action at this time.
0 commit comments