diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-10-09 18:49:35 +0300 | 
|---|---|---|
| committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-10-09 18:49:35 +0300 | 
| commit | 1cf3a5c505f1705a9d7169570799bda55f76e675 (patch) | |
| tree | 1bee2cf46d8607f3cf1b831db32425a35fc15453 | |
| parent | 26ef8e6c65c53b00be09400897761239ca15187c (diff) | |
SL-14078 Caps request should log region they are requested for
| -rw-r--r-- | indra/newview/llviewerregion.cpp | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index a30c5156fa..8aa928f50d 100644 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -291,6 +291,7 @@ void LLViewerRegionImpl::requestBaseCapabilitiesCoro(U64 regionHandle)          LL_INFOS("AppInit", "Capabilities") << "Requesting seed from " << url                                               << " region name " << regionp->getName() +                                            << " region id " << regionp->getRegionID()                                              << " (attempt #" << mSeedCapAttempts + 1 << ")" << LL_ENDL;  		LL_DEBUGS("AppInit", "Capabilities") << "Capabilities requested: " << capabilityNames << LL_ENDL; @@ -405,7 +406,7 @@ void LLViewerRegionImpl::requestBaseCapabilitiesCompleteCoro(U64 regionHandle)          LLSD capabilityNames = LLSD::emptyArray();          buildCapabilityNames(capabilityNames); -        LL_INFOS("AppInit", "Capabilities") << "Requesting second Seed from " << url << LL_ENDL; +        LL_INFOS("AppInit", "Capabilities") << "Requesting second Seed from " << url << " for region " << regionp->getRegionID() << LL_ENDL;          regionp = NULL;          result = httpAdapter->postAndSuspend(httpRequest, url, capabilityNames); @@ -2221,7 +2222,7 @@ void LLViewerRegion::requestSimulatorFeatures()              LLCoros::instance().launch("LLViewerRegionImpl::requestSimulatorFeatureCoro",                                         boost::bind(&LLViewerRegionImpl::requestSimulatorFeatureCoro, mImpl, url, getHandle())); -        LL_INFOS("AppInit", "SimulatorFeatures") << "Launching " << coroname << " requesting simulator features from " << url << LL_ENDL; +        LL_INFOS("AppInit", "SimulatorFeatures") << "Launching " << coroname << " requesting simulator features from " << url << " for region " << getRegionID() << LL_ENDL;      }      else      { @@ -3028,7 +3029,7 @@ void LLViewerRegion::setSeedCapability(const std::string& url)  	if (getCapability("Seed") == url)      {	  		setCapabilityDebug("Seed", url); -		LL_WARNS("CrossingCaps") <<  "Received duplicate seed capability, posting to seed " << +		LL_WARNS("CrossingCaps") <<  "Received duplicate seed capability for " << getRegionID() << ", posting to seed " <<  				url	<< LL_ENDL;  		//Instead of just returning we build up a second set of seed caps and compare them  @@ -3049,7 +3050,7 @@ void LLViewerRegion::setSeedCapability(const std::string& url)          LLCoros::instance().launch("LLViewerRegionImpl::requestBaseCapabilitiesCoro",          boost::bind(&LLViewerRegionImpl::requestBaseCapabilitiesCoro, mImpl, getHandle())); -    LL_INFOS("AppInit", "Capabilities") << "Launching " << coroname << " requesting seed capabilities from " << url << LL_ENDL; +    LL_INFOS("AppInit", "Capabilities") << "Launching " << coroname << " requesting seed capabilities from " << url << " for region " << getRegionID() << LL_ENDL;  }  S32 LLViewerRegion::getNumSeedCapRetries()  | 
