From a55ac75da48d1aef1d4b0dcd402586ba58b1ea75 Mon Sep 17 00:00:00 2001 From: phk Date: Thu, 7 Sep 2006 07:33:23 +0000 Subject: [PATCH] Remove debugging messages. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@942 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- varnish-cache/bin/varnishd/cache_center.c | 1 - varnish-cache/bin/varnishd/cache_http.c | 2 -- varnish-cache/bin/varnishd/cache_response.c | 2 -- 3 files changed, 5 deletions(-) diff --git a/varnish-cache/bin/varnishd/cache_center.c b/varnish-cache/bin/varnishd/cache_center.c index 91c79331..6a52dcaf 100644 --- a/varnish-cache/bin/varnishd/cache_center.c +++ b/varnish-cache/bin/varnishd/cache_center.c @@ -673,7 +673,6 @@ CNT_Session(struct sess *sp) 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" diff --git a/varnish-cache/bin/varnishd/cache_http.c b/varnish-cache/bin/varnishd/cache_http.c index 265e0f15..d0c625d8 100644 --- a/varnish-cache/bin/varnishd/cache_http.c +++ b/varnish-cache/bin/varnishd/cache_http.c @@ -190,7 +190,6 @@ http_DoConnection(struct sess *sp) 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 @@ http_DoConnection(struct sess *sp) 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; diff --git a/varnish-cache/bin/varnishd/cache_response.c b/varnish-cache/bin/varnishd/cache_response.c index 0a75248b..df436b4e 100644 --- a/varnish-cache/bin/varnishd/cache_response.c +++ b/varnish-cache/bin/varnishd/cache_response.c @@ -176,8 +176,6 @@ res_do_conds(struct sess *sp) 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); -- 2.39.5