
tfheen at varnish-cache
Jul 22, 2013, 4:28 AM
Post #1 of 1
(44 views)
Permalink
|
|
[master] b0c9d6f Stop printing to stdout on ESI parse warnings
|
|
commit b0c9d6f4bab6b272e1c422abe3f7cbeefd8ed36d Author: Tollef Fog Heen <tfheen [at] varnish-software> Date: Mon Jul 22 13:25:38 2013 +0200 Stop printing to stdout on ESI parse warnings This looks like a bit of forgotten debugging, left by mistake. diff --git a/bin/varnishd/cache/cache_esi_parse.c b/bin/varnishd/cache/cache_esi_parse.c index 6eac8d3..1b043a3 100644 --- a/bin/varnishd/cache/cache_esi_parse.c +++ b/bin/varnishd/cache/cache_esi_parse.c @@ -201,7 +201,6 @@ vep_warn(const struct vep_state *vep, const char *p) VSC_C_main->esi_warnings++; l = (intmax_t)(vep->ver_p - vep->hack_p); - printf("WARNING at %jd %s\n", l, p); VSLb(vep->bo->vsl, SLT_ESI_xmlerror, "WARN at %jd %s", l, p); } _______________________________________________ varnish-commit mailing list varnish-commit [at] varnish-cache https://www.varnish-cache.org/lists/mailman/listinfo/varnish-commit
|