Skip to content

Commit 68b1622

Browse files
committed
Change health check log level from info to debug
Signed-off-by: [email protected] <[email protected]>
1 parent 4ca1679 commit 68b1622

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/runtime/src/health_check.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ impl HealthCheckManager {
145145
tokio::select! {
146146
_ = tokio::time::sleep(canary_wait) => {
147147
// Timeout - send health check for this specific endpoint
148-
info!("Canary timer expired for {}, sending health check", endpoint_subject);
148+
debug!("Canary timer expired for {}, sending health check", endpoint_subject);
149149

150150
// Get the health check payload for this endpoint
151151
let target = manager.drt.system_health().lock().get_health_check_target(&endpoint_subject);
@@ -292,7 +292,7 @@ impl HealthCheckManager {
292292
);
293293
false
294294
} else {
295-
info!("Health check successful for {}", endpoint_subject_owned);
295+
debug!("Health check successful for {}", endpoint_subject_owned);
296296
true
297297
}
298298
} else {

0 commit comments

Comments
 (0)