* Print the first line of each HTTP request to the log, for debugging
authorArt Cancro <ajc@citadel.org>
Thu, 21 May 2009 15:01:03 +0000 (15:01 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 21 May 2009 15:01:03 +0000 (15:01 +0000)
webcit/context_loop.c

index 72b5882ee11da3641b3a0a8d5c56b07b47fd8d92..6c8950d50d1b1aa9ef17564b143474fea52ac559 100644 (file)
@@ -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;