This is an automated email from the ASF dual-hosted git repository.
rob 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 318b2f4 Removed log line making t3c-apply very repetitive. (#6301)
318b2f4 is described below
commit 318b2f47e07ddb08042daac6dfb4b1a1e88379fd
Author: Joe Pappano <[email protected]>
AuthorDate: Tue Nov 9 12:58:25 2021 -0500
Removed log line making t3c-apply very repetitive. (#6301)
---
cache-config/t3c-apply/torequest/torequest.go | 1 -
1 file changed, 1 deletion(-)
diff --git a/cache-config/t3c-apply/torequest/torequest.go
b/cache-config/t3c-apply/torequest/torequest.go
index 2b6e6e5..8013b72 100644
--- a/cache-config/t3c-apply/torequest/torequest.go
+++ b/cache-config/t3c-apply/torequest/torequest.go
@@ -574,7 +574,6 @@ func (r *TrafficOpsReq) CheckSystemServices() error {
func (r *TrafficOpsReq) IsPackageInstalled(name string) bool {
for k, v := range r.pkgs {
if strings.HasPrefix(k, name) {
- log.Infof("IsPackageInstalled '%v' found '%v' in cache,
returning %v\n", name, k, v)
return v
}
}