diff --git a/core/o11y/src/lib.rs b/core/o11y/src/lib.rs index 0ef1f85ba36..2a255e6d2d7 100644 --- a/core/o11y/src/lib.rs +++ b/core/o11y/src/lib.rs @@ -462,7 +462,10 @@ pub fn reload_log_config(config: Option<&log_config::LogConfig>) { tracing::info!("Updated the logging layer according to `log_config.json`"); } Err(err) => { - tracing::info!("Failed to update the logging layer according to the changed `log_config.json`. Errors: {:?}", err); + eprintln!( + "Failed to update the logging layer according to the changed `log_config.json`. Errors: {:?}", + err + ); } } }