[4.1] be937f9 Remove some debug log records in the proxy v1 code

Lasse Karstensen lkarsten at varnish-software.com
Thu Jan 14 15:15:03 CET 2016


commit be937f9031cd4cab226f9fadd5175d60c71c3e33
Author: Martin Blix Grydeland <martin at varnish-software.com>
Date:   Tue Oct 27 15:37:03 2015 +0100

    Remove some debug log records in the proxy v1 code

diff --git a/bin/varnishd/proxy/cache_proxy_proto.c b/bin/varnishd/proxy/cache_proxy_proto.c
index 954beef..604d796 100644
--- a/bin/varnishd/proxy/cache_proxy_proto.c
+++ b/bin/varnishd/proxy/cache_proxy_proto.c
@@ -64,8 +64,6 @@ vpx_proto1(const struct worker *wrk, struct req *req)
 	CHECK_OBJ_NOTNULL(req, REQ_MAGIC);
 	CHECK_OBJ_NOTNULL(req->sp, SESS_MAGIC);
 
-	VSL(SLT_Debug, req->sp->vxid, "PROXY1");
-
 	q = strchr(req->htc->rxbuf_b, '\r');
 	if (q == NULL)
 		return (-1);
@@ -95,9 +93,6 @@ vpx_proto1(const struct worker *wrk, struct req *req)
 		return (-1);
 	}
 
-	VSL(SLT_Debug, req->sp->fd, "PROXY1 <%s> <%s> <%s> <%s> <%s>",
-	    fld[0], fld[1], fld[2], fld[3], fld[4]);
-
 	if (!strcmp(fld[0], "TCP4"))
 		pfam = AF_INET;
 	else if (!strcmp(fld[0], "TCP6"))



More information about the varnish-commit mailing list