This is an automated email from the ASF dual-hosted git repository.
neuman 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 b85f350 Remove wrong error logs (#4750)
b85f350 is described below
commit b85f35061d5c8117d75c23d5f9a537d34bdad8f8
Author: Robert O Butts <[email protected]>
AuthorDate: Tue Jun 2 10:52:09 2020 -0600
Remove wrong error logs (#4750)
---
traffic_ops/traffic_ops_golang/ats/atsserver/hostingdotconfig.go | 5 -----
1 file changed, 5 deletions(-)
diff --git a/traffic_ops/traffic_ops_golang/ats/atsserver/hostingdotconfig.go
b/traffic_ops/traffic_ops_golang/ats/atsserver/hostingdotconfig.go
index e6586b3..e3525be 100644
--- a/traffic_ops/traffic_ops_golang/ats/atsserver/hostingdotconfig.go
+++ b/traffic_ops/traffic_ops_golang/ats/atsserver/hostingdotconfig.go
@@ -79,9 +79,6 @@ func GetHostingDotConfig(w http.ResponseWriter, r
*http.Request) {
return
}
- log.Errorf("hosting config DEBUG params %+v\n", params)
- log.Errorf("hosting config DEBUG multiParams %+v\n", multiParams)
-
txt := atscfg.MakeHostingDotConfig(serverName, toToolName, toURL,
params, origins)
w.Header().Set("Content-Type", "text/plain")
@@ -119,8 +116,6 @@ WHERE
}
// Note the 'ds.cdn_id = s.cdn_id' in the query shouldn't be necessary,
but it is, because there's no DB constraint.
- log.Errorln("hosting config DEBUG qry QQ" + qry + "QQ")
-
rows, err := tx.Query(qry, serverName)
if err != nil {
return nil, errors.New("querying: " + err.Error())