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 5b64259 Remove t3c debug print (#6207)
5b64259 is described below
commit 5b64259c0ad5b524fa9315d9ac3c8c4c2e13b74d
Author: Robert O Butts <[email protected]>
AuthorDate: Mon Sep 20 12:10:00 2021 -0600
Remove t3c debug print (#6207)
Fixes #6202
---
cache-config/t3cutil/toreq/client.go | 1 -
1 file changed, 1 deletion(-)
diff --git a/cache-config/t3cutil/toreq/client.go
b/cache-config/t3cutil/toreq/client.go
index 0f21b16..f4a32c0 100644
--- a/cache-config/t3cutil/toreq/client.go
+++ b/cache-config/t3cutil/toreq/client.go
@@ -76,7 +76,6 @@ func New(url *url.URL, user string, pass string, insecure
bool, timeout time.Dur
opts.UserAgent = userAgent
opts.RequestTimeout = timeout
toClient, inf, err := toclient.Login(toURLStr, user, pass, opts)
- log.Errorf("DEBUG toreq.New reqInf %+v\n", inf)
latestSupported := inf.StatusCode != 404 && inf.StatusCode != 501
if err != nil && latestSupported {
return nil, fmt.Errorf("Logging in to Traffic Ops '%v' code %v:
%v", torequtil.MaybeIPStr(inf.RemoteAddr), inf.StatusCode, err)