[router] improve router logs and request id header (#8415)
This commit is contained in:
@@ -411,7 +411,7 @@ pub fn start_health_checker(
|
||||
|
||||
// Check for shutdown signal
|
||||
if shutdown_clone.load(Ordering::Acquire) {
|
||||
tracing::info!("Health checker shutting down");
|
||||
tracing::debug!("Health checker shutting down");
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -439,6 +439,9 @@ pub fn start_health_checker(
|
||||
Err(e) => {
|
||||
if was_healthy {
|
||||
tracing::warn!("Worker {} health check failed: {}", worker_url, e);
|
||||
} else {
|
||||
// Worker was already unhealthy, log at debug level
|
||||
tracing::debug!("Worker {} remains unhealthy: {}", worker_url, e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user