Release Argo Tunnel Client 2018.7.3

This commit is contained in:
cloudflare-warp-bot 2018-07-18 19:41:19 +00:00
parent b0218f4c11
commit 718efa3641
1 changed files with 2 additions and 2 deletions

View File

@ -596,7 +596,7 @@ func (h *TunnelHandler) logError(stream *h2mux.MuxedStream, err error) {
func (h *TunnelHandler) logRequest(req *http.Request, cfRay string, lbProbe bool) {
if cfRay != "" {
h.logger.WithField("CF-RAY", cfRay).Infof("%s %s %s", req.Method, req.URL, req.Proto)
h.logger.WithField("CF-RAY", cfRay).Debugf("%s %s %s", req.Method, req.URL, req.Proto)
} else if lbProbe {
h.logger.Debugf("Load Balancer health check %s %s %s", req.Method, req.URL, req.Proto)
} else {
@ -607,7 +607,7 @@ func (h *TunnelHandler) logRequest(req *http.Request, cfRay string, lbProbe bool
func (h *TunnelHandler) logResponse(r *http.Response, cfRay string, lbProbe bool) {
if cfRay != "" {
h.logger.WithField("CF-RAY", cfRay).Infof("%s", r.Status)
h.logger.WithField("CF-RAY", cfRay).Debugf("%s", r.Status)
} else if lbProbe {
h.logger.Debugf("Response to Load Balancer health check %s", r.Status)
} else {