From: Art Cancro Date: Thu, 21 May 2009 15:01:03 +0000 (+0000) Subject: * Print the first line of each HTTP request to the log, for debugging X-Git-Tag: v7.86~1146 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=0062014d4e66c839106c1bef608e3316c9935a1b;p=citadel.git * Print the first line of each HTTP request to the log, for debugging --- diff --git a/webcit/context_loop.c b/webcit/context_loop.c index 72b5882ee..6c8950d50 100644 --- a/webcit/context_loop.c +++ b/webcit/context_loop.c @@ -354,6 +354,7 @@ int ReadHTTPRequset (ParsedHttpHdrs *Hdr) continue; } if (nLine == 1) { + lprintf(9, "%s\n", ChrPtr(Line)); isbogus = ReadHttpSubject(Hdr, Line, HeaderName); if (isbogus) break; continue;