diff options
| author | Rider Linden <none@none> | 2015-04-03 14:50:15 -0700 | 
|---|---|---|
| committer | Rider Linden <none@none> | 2015-04-03 14:50:15 -0700 | 
| commit | a25f4b49676e5a371d185bfb222e47893dd78b75 (patch) | |
| tree | e92ca263c66c9e73033a08e8e391ce7438ead1ea /indra/newview | |
| parent | 17641c8427d05c4cde1fadd2ca059264d89bc818 (diff) | |
Comment out debug LL_INFOs and added TODO comment.
Diffstat (limited to 'indra/newview')
| -rwxr-xr-x | indra/newview/llaccountingcostmanager.cpp | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/indra/newview/llaccountingcostmanager.cpp b/indra/newview/llaccountingcostmanager.cpp index c52e6e1172..a80715dad5 100755 --- a/indra/newview/llaccountingcostmanager.cpp +++ b/indra/newview/llaccountingcostmanager.cpp @@ -110,7 +110,7 @@ void LLAccountingCostManager::accountingCostCoro(LLCoros::self& self, std::strin          LLSD results;          {   // Scoping block for pumper object -            LL_INFOS() << "Requesting transaction " << transactionId << LL_ENDL; +            //LL_INFOS() << "Requesting transaction " << transactionId << LL_ENDL;              LLCoreHttpUtil::HttpRequestPumper pumper(mHttpRequest);              LLCore::HttpHandle hhandle = LLCoreHttpUtil::requestPostWithLLSD(mHttpRequest,                  mHttpPolicy, mHttpPriority, url, dataToPost, mHttpOptions, mHttpHeaders, @@ -126,7 +126,7 @@ void LLAccountingCostManager::accountingCostCoro(LLCoros::self& self, std::strin              }              results = waitForEventOn(self, replyPump); -            LL_INFOS() << "Results for transaction " << transactionId << LL_ENDL; +            //LL_INFOS() << "Results for transaction " << transactionId << LL_ENDL;          }          LLSD httpResults;          httpResults = results["http_result"]; @@ -135,7 +135,9 @@ void LLAccountingCostManager::accountingCostCoro(LLCoros::self& self, std::strin          {              observer = observerHandle.get();              if ((!observer) || (observer->getTransactionID() != transactionId)) -            { +            {   // *TODO: Rider: I've noticed that getTransactionID() does not  +                // always match transactionId (the new transaction Id does not show a  +                // corresponding request.)                  if (!observer)                      break;                  LL_WARNS() << "Request transaction Id(" << transactionId | 
