From a971b6c50b6a429ddbbbdfd2ca8ff1107b659eb8 Mon Sep 17 00:00:00 2001 From: "John J. Rushford" Date: Tue, 7 Sep 2021 15:45:05 -0600 Subject: [PATCH] Change a chatty log message from Info to Debug by request. The message (#6170) just logs that it is polling a traffic monitor --- cache-config/tm-health-client/tmagent/tmagent.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache-config/tm-health-client/tmagent/tmagent.go b/cache-config/tm-health-client/tmagent/tmagent.go index 85329d8672..3006d27b46 100644 --- a/cache-config/tm-health-client/tmagent/tmagent.go +++ b/cache-config/tm-health-client/tmagent/tmagent.go @@ -405,7 +405,7 @@ func (c *ParentInfo) findATrafficMonitor() (string, error) { return "", errors.New("there are no available traffic monitors") } - log.Infof("polling: %s\n", tmHostname) + log.Debugf("polling: %s\n", tmHostname) return tmHostname, nil }