This is an automated email from the ASF dual-hosted git repository. zrhoffman pushed a commit to branch 6.0.x in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
commit 66891d1d41ba43c82cf6c3118f174c4973ade078 Author: Robert O Butts <[email protected]> AuthorDate: Mon Sep 20 12:10:00 2021 -0600 Remove t3c debug print (#6207) Fixes #6202 (cherry picked from commit 5b64259c0ad5b524fa9315d9ac3c8c4c2e13b74d) --- 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)
