From: phk Date: Mon, 1 Oct 2007 12:27:49 +0000 (+0000) Subject: Oops, last commit included some debugging X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35e47759d85c9bddf1450d4c7f81027cd0b339f7;p=varnish Oops, last commit included some debugging git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2076 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/cache_center.c b/varnish-cache/bin/varnishd/cache_center.c index 365ecc30..8f307b15 100644 --- a/varnish-cache/bin/varnishd/cache_center.c +++ b/varnish-cache/bin/varnishd/cache_center.c @@ -310,7 +310,6 @@ cnt_fetch(struct sess *sp) http_PutStatus(sp->wrk, sp->fd, sp->obj->http, 503); sp->err_code = http_GetStatus(sp->obj->http); -WSP(sp, SLT_Debug, "i %d err %d v %d c %d", i, sp->err_code, sp->obj->valid, sp->obj->cacheable); VCL_fetch_method(sp); switch (sp->handling) { diff --git a/varnish-cache/bin/varnishd/cache_synthetic.c b/varnish-cache/bin/varnishd/cache_synthetic.c index ce6f8c19..863f0023 100644 --- a/varnish-cache/bin/varnishd/cache_synthetic.c +++ b/varnish-cache/bin/varnishd/cache_synthetic.c @@ -56,7 +56,6 @@ SYN_ErrorPage(struct sess *sp, int status, const char *reason, int ttl) double now; int fd; - WSL_Flush(sp->wrk); assert(status >= 100 && status <= 999); CHECK_OBJ_NOTNULL(sp, SESS_MAGIC); CHECK_OBJ_NOTNULL(sp->wrk, WORKER_MAGIC); diff --git a/varnish-cache/bin/varnishd/rfc2616.c b/varnish-cache/bin/varnishd/rfc2616.c index 1f3c46c3..28beeb48 100644 --- a/varnish-cache/bin/varnishd/rfc2616.c +++ b/varnish-cache/bin/varnishd/rfc2616.c @@ -172,7 +172,6 @@ RFC2616_cache_policy(const struct sess *sp, const struct http *hp) * We do not support ranges yet, so 206 is out. */ sp->obj->response = http_GetStatus(hp); -WSP(sp, SLT_Debug, "resp: %d", sp->obj->response); switch (sp->obj->response) { case 200: /* OK */ case 203: /* Non-Authoritative Information */