This is an automated email from the ASF dual-hosted git repository.
zrhoffman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
The following commit(s) were added to refs/heads/master by this push:
new a971b6c Change a chatty log message from Info to Debug by request.
The message (#6170)
a971b6c is described below
commit a971b6c50b6a429ddbbbdfd2ca8ff1107b659eb8
Author: John J. Rushford <[email protected]>
AuthorDate: Tue Sep 7 15:45:05 2021 -0600
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 85329d8..3006d27 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
}