Unverified Commit 1f9b69b0 authored by Tzu-Ling Kan's avatar Tzu-Ling Kan Committed by GitHub
Browse files

feat: Change health check log level from info to debug (#4818)


Signed-off-by: default avatartzulingk@nvidia.com <tzulingk@nvidia.com>
parent 1e37c103
......@@ -145,7 +145,7 @@ impl HealthCheckManager {
tokio::select! {
_ = tokio::time::sleep(canary_wait) => {
// Timeout - send health check for this specific endpoint
info!("Canary timer expired for {}, sending health check", endpoint_subject);
debug!("Canary timer expired for {}, sending health check", endpoint_subject);
// Get the health check payload for this endpoint
let target = manager.drt.system_health().lock().get_health_check_target(&endpoint_subject);
......@@ -292,7 +292,7 @@ impl HealthCheckManager {
);
false
} else {
info!("Health check successful for {}", endpoint_subject_owned);
debug!("Health check successful for {}", endpoint_subject_owned);
true
}
} else {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment