File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/stackable-telemetry/src/tracing Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -285,7 +285,7 @@ impl Tracing {
285
285
/// The environment variable used to set the rolling file log level filter.
286
286
pub const FILE_LOG_ENV_VAR : & str = "FILE_LOG" ;
287
287
/// The filename used for the rolling file logs.
288
- pub const FILE_LOG_NAME : & str = "operator.log " ;
288
+ pub const FILE_LOG_SUFFIX : & str = "tracing-rs.json " ;
289
289
/// The environment variable used to set the OTLP log level filter.
290
290
pub const OTLP_LOG_ENV_VAR : & str = "OTLP_LOG" ;
291
291
/// The environment variable used to set the OTLP trace level filter.
@@ -323,7 +323,7 @@ impl Tracing {
323
323
Settings :: builder ( )
324
324
. with_environment_variable ( Self :: FILE_LOG_ENV_VAR )
325
325
. with_default_level ( LevelFilter :: INFO )
326
- . file_log_settings_builder ( log_directory, Self :: FILE_LOG_NAME )
326
+ . file_log_settings_builder ( log_directory, Self :: FILE_LOG_SUFFIX )
327
327
. with_rotation_period ( rolling_logs_period)
328
328
. build ( )
329
329
} ) )
You can’t perform that action at this time.
0 commit comments