diff options
| author | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-07-17 15:45:02 +0300 | 
|---|---|---|
| committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-07-17 15:45:02 +0300 | 
| commit | 42ab393dd39e2e78cde2b55dcd04d21be6a51937 (patch) | |
| tree | db2eb95e64e49091416365d712a5803468eca6dd | |
| parent | 2ebe9c481841aefa20ff2287dfeb786e99ebe0c9 (diff) | |
SL-927 Better logging
| -rw-r--r-- | indra/newview/llviewermessage.cpp | 3 | ||||
| -rw-r--r-- | indra/newview/llviewerregion.cpp | 2 | 
2 files changed, 4 insertions, 1 deletions
| diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index ba5097f4ad..6ec79ff77a 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -802,6 +802,7 @@ void send_join_group_response(LLUUID group_id, LLUUID transaction_id, bool accep          if (!url.empty())          { +            LL_DEBUGS("GroupInvite") << "Capability url: " << url << LL_ENDL;              LLCoros::instance().launch("LLMessageSystem::acceptGroupInvitation",                  boost::bind(response_group_invitation_coro, url, group_id, accept_invite));          } @@ -813,6 +814,8 @@ void send_join_group_response(LLUUID group_id, LLUUID transaction_id, bool accep      }      else      { +        LL_DEBUGS("GroupInvite") << "Replying to group invite via IM message" << LL_ENDL; +          EInstantMessage type = accept_invite ? IM_GROUP_INVITATION_ACCEPT : IM_GROUP_INVITATION_DECLINE;          send_improved_im(group_id, diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index e1437e28f7..4f0460da29 100644 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -2880,7 +2880,7 @@ void LLViewerRegionImpl::buildCapabilityNames(LLSD& capabilityNames)  	capabilityNames.append("ParcelVoiceInfoRequest");  	capabilityNames.append("ProductInfoRequest");  	capabilityNames.append("ProvisionVoiceAccountRequest"); -	capabilityNames.append("ReadOfflineMsgs"); // Only use with AcceptGroupInvite AcceptFriendship +	capabilityNames.append("ReadOfflineMsgs"); // Requires to respond reliably: AcceptFriendship, AcceptGroupInvite, DeclineFriendship, DeclineGroupInvite  	capabilityNames.append("RemoteParcelRequest");  	capabilityNames.append("RenderMaterials");  	capabilityNames.append("RequestTextureDownload"); | 
