additional debug logging for voice startup
parent
14dc84cc83
commit
77344afa8b
|
|
@ -716,6 +716,7 @@ bool LLVivoxVoiceClient::callbackEndDaemon(const LLSD& data)
|
|||
LL_DEBUGS("Voice") << LL_ENDL;
|
||||
if (!LLAppViewer::isExiting())
|
||||
{
|
||||
LL_DEBUGS("Voice") << "callbackEndDaemon terminating audio session" << LL_ENDL;
|
||||
terminateAudioSession(false);
|
||||
closeSocket();
|
||||
cleanUp();
|
||||
|
|
@ -1486,7 +1487,7 @@ bool LLVivoxVoiceClient::terminateAudioSession(bool wait)
|
|||
|
||||
if (mAudioSession)
|
||||
{
|
||||
LL_INFOS("Voice") << "Terminating current voice session " << mAudioSession->mHandle << LL_ENDL;
|
||||
LL_INFOS("Voice") << "terminateAudioSession(" << wait << ") Terminating current voice session " << mAudioSession->mHandle << LL_ENDL;
|
||||
|
||||
if (mIsLoggedIn)
|
||||
{
|
||||
|
|
@ -1560,7 +1561,7 @@ bool LLVivoxVoiceClient::terminateAudioSession(bool wait)
|
|||
}
|
||||
else
|
||||
{
|
||||
LL_WARNS("Voice") << "stateSessionTerminated with NULL mAudioSession" << LL_ENDL;
|
||||
LL_WARNS("Voice") << "terminateAudioSession(" << wait << ") with NULL mAudioSession" << LL_ENDL;
|
||||
}
|
||||
|
||||
notifyStatusObservers(LLVoiceClientStatusObserver::STATUS_LEFT_CHANNEL);
|
||||
|
|
@ -1675,7 +1676,7 @@ bool LLVivoxVoiceClient::runSession(const sessionStatePtr_t &session)
|
|||
|
||||
if (mSessionTerminateRequested)
|
||||
{
|
||||
LL_DEBUGS("Voice") << "terminate requested " << LL_ENDL;
|
||||
LL_DEBUGS("Voice") << "runSession terminate requested " << LL_ENDL;
|
||||
terminateAudioSession(true);
|
||||
}
|
||||
// if a relog has been requested then addAndJoineSession
|
||||
|
|
@ -2911,7 +2912,6 @@ void LLVivoxVoiceClient::sendPositionAndVolumeUpdate(void)
|
|||
}
|
||||
}
|
||||
|
||||
//sendLocalAudioUpdates(); obsolete, used to send volume setting on position updates
|
||||
std::string update(stream.str());
|
||||
if(!update.empty())
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue