aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage/lliohttpserver.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llmessage/lliohttpserver.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/linden/indra/llmessage/lliohttpserver.cpp b/linden/indra/llmessage/lliohttpserver.cpp
index 6e94ec6..2ebf117 100644
--- a/linden/indra/llmessage/lliohttpserver.cpp
+++ b/linden/indra/llmessage/lliohttpserver.cpp
@@ -203,7 +203,9 @@ LLIOPipe::EStatus LLHTTPPipe::process_impl(
203 } 203 }
204 204
205 // Log all HTTP transactions. 205 // Log all HTTP transactions.
206 llinfos << verb << " " << context[CONTEXT_REQUEST]["path"].asString() 206 // TODO: Add a way to log these to their own file instead of indra.log
207 // It is just too spammy to be in indra.log.
208 lldebugs << verb << " " << context[CONTEXT_REQUEST]["path"].asString()
207 << " " << mStatusCode << " " << mStatusMessage << " " << delta 209 << " " << mStatusCode << " " << mStatusMessage << " " << delta
208 << "s" << llendl; 210 << "s" << llendl;
209 211
@@ -723,8 +725,8 @@ LLIOPipe::EStatus LLHTTPResponder::process_impl(
723 const LLHTTPNode* node = mRootNode.traverse(mPath, context); 725 const LLHTTPNode* node = mRootNode.traverse(mPath, context);
724 if(node) 726 if(node)
725 { 727 {
726 lldebugs << "LLHTTPResponder::process_impl found node for " 728 //llinfos << "LLHTTPResponder::process_impl found node for "
727 << mAbsPathAndQuery << llendl; 729 // << mAbsPathAndQuery << llendl;
728 730
729 // Copy everything after mLast read to the out. 731 // Copy everything after mLast read to the out.
730 LLBufferArray::segment_iterator_t seg_iter; 732 LLBufferArray::segment_iterator_t seg_iter;