Commit f99aefd7 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Log debugs with correct id



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@3432 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 2bead167
......@@ -282,11 +282,11 @@ esi_addinclude(struct esi_work *ew, txt t)
unsigned u, v;
struct ws *ws;
VSL(SLT_Debug, 0, "Incl \"%.*s\"", t.e - t.b, t.b);
VSL(SLT_Debug, ew->sp->fd, "Incl \"%.*s\"", t.e - t.b, t.b);
eb = esi_addbit(ew);
while (esi_attrib(ew, &t, &tag, &val) == 1) {
if (params->esi_syntax & 0x4)
VSL(SLT_Debug, 0, "<%.*s> -> <%.*s>",
VSL(SLT_Debug, ew->sp->fd, "<%.*s> -> <%.*s>",
tag.e - tag.b, tag.b, val.e - val.b, val.b);
if (Tlen(tag) != 3 || memcmp(tag.b, "src", 3))
continue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment