From 6c9c9406865e8234cd3ce0f76e10317f94294ba2 Mon Sep 17 00:00:00 2001 From: Alex Rousskov Date: Sun, 3 Apr 2011 05:33:34 -0600 Subject: [PATCH] Make cache.log less noisy about usually benign events outside of admin control. Raised reporting level from 1 to 2 for 'statusIfComplete: Request not yet fully sent' and 'clientProcessRequest: Invalid Request' messages after observing important information drowning in their noise on busy proxies. --- src/client_side.cc | 2 +- src/http.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client_side.cc b/src/client_side.cc index b0f04e9015..4ac024501e 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -2360,7 +2360,7 @@ clientProcessRequest(ConnStateData *conn, HttpParser *hp, ClientSocketContext *c if (context->flags.parsed_ok == 0) { clientStreamNode *node = context->getClientReplyContext(); - debugs(33, 1, "clientProcessRequest: Invalid Request"); + debugs(33, 2, "clientProcessRequest: Invalid Request"); // setLogUri should called before repContext->setReplyToError setLogUri(http, http->uri, true); clientReplyContext *repContext = dynamic_cast(node->data.getRaw()); diff --git a/src/http.cc b/src/http.cc index 7689057a5b..3251dfa9b1 100644 --- a/src/http.cc +++ b/src/http.cc @@ -941,7 +941,7 @@ HttpStateData::statusIfComplete() const * connection. */ if (!flags.request_sent) { - debugs(11, 1, "statusIfComplete: Request not yet fully sent \"" << RequestMethodStr(orig_request->method) << " " << entry->url() << "\"" ); + debugs(11, 2, "statusIfComplete: Request not yet fully sent \"" << RequestMethodStr(orig_request->method) << " " << entry->url() << "\"" ); return COMPLETE_NONPERSISTENT_MSG; } -- 2.47.2