Remove debug message (#18382)
Stelios Fragkakis committed
Aug 20, 2024 at 15:50 UTC
caa795fa934d19151b5ec2e22c4f9afa96698bbb
1 file changed
+1
-3
src/health/health_event_loop.c
+1
-3
@@ -298,10 +298,8 @@ static void health_event_loop(void) {
298
#ifdef ENABLE_ACLK
299
if (netdata_cloud_enabled) {
300
struct aclk_sync_cfg_t *wc = host->aclk_config;
301
- if (wc && wc->send_snapshot == 2) {
302
- netdata_log_info("DEBUG: %s SKIPPING HEALTH BECAUSE WE WILL SEND SNAPSHOT", rrdhost_hostname(host));
301
+ if (wc && wc->send_snapshot == 2)
302
continue;
304
- }
303
}
304
#endif
305