diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-05-10 14:32:33 +0100 | 
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-05-10 14:32:33 +0100 | 
| commit | 86def9880a59293b06fc1d5dd4a68ce0b85963c4 (patch) | |
| tree | 62d9fc4a4920b9ceee00ff3b1c611445c208e6ad /indra | |
| parent | 2a48816717087e07eb3f3855798c5dd71f541ee5 (diff) | |
MAINT-7867 - additional cap fetch logging
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llviewerregion.cpp | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index efaa327af6..3fce30b030 100644 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -242,6 +242,8 @@ void LLViewerRegionImpl::requestBaseCapabilitiesCoro(U64 regionHandle)              LL_WARNS("AppInit", "Capabilities") << "Attempting to get capabilities for region that no longer exists!" << LL_ENDL;              return; // this error condition is not recoverable.          } +        LL_DEBUGS("AppInit", "Capabilities") << "requesting seed caps for handle " << regionHandle  +                                             << " name " << regionp->getName() << LL_ENDL;          std::string url = regionp->getCapability("Seed");          if (url.empty()) @@ -270,7 +272,8 @@ void LLViewerRegionImpl::requestBaseCapabilitiesCoro(U64 regionHandle)          buildCapabilityNames(capabilityNames);          LL_INFOS("AppInit", "Capabilities") << "Requesting seed from " << url  -            << " (attempt #" << mSeedCapAttempts + 1 << ")" << LL_ENDL; +                                            << " region name " << regionp->getName() +                                            << " (attempt #" << mSeedCapAttempts + 1 << ")" << LL_ENDL;          regionp = NULL;          result = httpAdapter->postAndSuspend(httpRequest, url, capabilityNames); @@ -317,6 +320,8 @@ void LLViewerRegionImpl::requestBaseCapabilitiesCoro(U64 regionHandle)  #endif          regionp->setCapabilitiesReceived(true); +        LL_DEBUGS("AppInit", "Capabilities") << "received caps for handle " << regionHandle  +                                             << " region name " << regionp->getName() << LL_ENDL;          if (STATE_SEED_GRANTED_WAIT == LLStartUp::getStartupState())          { | 
