@@ -1875,10 +1875,10 @@ def check_freshness(self):
1875
1875
h .passive_checks_enabled and not h .active_checks_enabled ]
1876
1876
statsmgr .gauge ('freshness.hosts-count' , len (hosts ))
1877
1877
items .extend (hosts )
1878
- logger .info ("Freshness check is enabled for %d hosts" , len (hosts ))
1878
+ logger .debuginfo ("Freshness check is enabled for %d hosts" , len (hosts ))
1879
1879
1880
1880
hosts = [h for h in self .hosts if h .check_freshness and h .freshness_expired ]
1881
- logger .info ("Freshness still expired for %d hosts" , len (hosts ))
1881
+ logger .debug ("Freshness still expired for %d hosts" , len (hosts ))
1882
1882
for h in hosts :
1883
1883
h .last_chk = now
1884
1884
self .add (h .get_check_result_brok ())
@@ -1902,11 +1902,11 @@ def check_freshness(self):
1902
1902
s .passive_checks_enabled and not s .active_checks_enabled ]
1903
1903
statsmgr .gauge ('freshness.services-count' , len (services ))
1904
1904
items .extend (services )
1905
- logger .info ("Freshness check is enabled for %d services" , len (services ))
1905
+ logger .debug ("Freshness check is enabled for %d services" , len (services ))
1906
1906
1907
1907
services = [s for s in self .services if not self .hosts [s .host ].freshness_expired and
1908
1908
s .check_freshness and s .freshness_expired ]
1909
- logger .info ("Freshness still expired for %d services" , len (services ))
1909
+ logger .debug ("Freshness still expired for %d services" , len (services ))
1910
1910
for s in services :
1911
1911
s .last_chk = now
1912
1912
self .add (s .get_check_result_brok ())
0 commit comments