Mailing List Archive

r942 - trunk/varnish-cache/bin/varnishd
Author: phk
Date: 2006-09-07 09:33:23 +0200 (Thu, 07 Sep 2006)
New Revision: 942

Modified:
trunk/varnish-cache/bin/varnishd/cache_center.c
trunk/varnish-cache/bin/varnishd/cache_http.c
trunk/varnish-cache/bin/varnishd/cache_response.c
Log:
Remove debugging messages.


Modified: trunk/varnish-cache/bin/varnishd/cache_center.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/cache_center.c 2006-09-07 07:27:21 UTC (rev 941)
+++ trunk/varnish-cache/bin/varnishd/cache_center.c 2006-09-07 07:33:23 UTC (rev 942)
@@ -673,7 +673,6 @@
switch (sp->step) {
#define STEP(l,u) \
case STP_##u: \
- VSL(SLT_Debug, sp->id, "State " #u); \
done = cnt_##l(sp); \
break;
#include "steps.h"

Modified: trunk/varnish-cache/bin/varnishd/cache_http.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/cache_http.c 2006-09-07 07:27:21 UTC (rev 941)
+++ trunk/varnish-cache/bin/varnishd/cache_http.c 2006-09-07 07:33:23 UTC (rev 942)
@@ -190,7 +190,6 @@
sp->doclose = "not HTTP/1.1";
return;
}
- VSL(SLT_Debug, sp->fd, "DoConnect(%s)", p);
for (; *p; p++) {
if (isspace(*p))
continue;
@@ -205,7 +204,6 @@
u = http_findhdr(hp, i, p);
if (u != 0)
hp->hdf[u] |= HDF_FILTER;
- VSL(SLT_Debug, sp->fd, "FLD(%.*s) u = %u", q - p, p, u);
if (!*q)
break;
p = q;

Modified: trunk/varnish-cache/bin/varnishd/cache_response.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/cache_response.c 2006-09-07 07:27:21 UTC (rev 941)
+++ trunk/varnish-cache/bin/varnishd/cache_response.c 2006-09-07 07:33:23 UTC (rev 942)
@@ -176,8 +176,6 @@
if (ims > sp->t_req.tv_sec) /* [RFC2616 14.25] */
return (0);
if (sp->obj->last_modified > ims) {
- VSL(SLT_Debug, sp->fd,
- "Cond: %d > %d ", sp->obj->last_modified, ims);
return (0);
}
res_do_304(sp);