]> err.no Git - varnish/commitdiff
Remove debugging messages.
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Thu, 7 Sep 2006 07:33:23 +0000 (07:33 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Thu, 7 Sep 2006 07:33:23 +0000 (07:33 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@942 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishd/cache_center.c
varnish-cache/bin/varnishd/cache_http.c
varnish-cache/bin/varnishd/cache_response.c

index 91c79331cafb6ea675829246ac555baa2a46d043..6a52dcaf481533b35ad7b1bf1a035286285d99e2 100644 (file)
@@ -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"
index 265e0f152d590e804f8f0f2d4fc224dc92fc4c1a..d0c625d8b285b15805e07d96702e9f8cd9f814f6 100644 (file)
@@ -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;
index 0a75248ba2db8d63949d5da53a973e439cd91be7..df436b4e7e60321a9811f39de0651778b4317438 100644 (file)
@@ -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);