diff options
| author | Roxie Linden <roxie@lindenlab.com> | 2024-08-16 13:16:39 -0700 | 
|---|---|---|
| committer | Roxie Linden <roxie@lindenlab.com> | 2024-08-16 13:16:39 -0700 | 
| commit | 1ff30757bc3ccc4b2ac26f04bdc2ca99f25d694d (patch) | |
| tree | b8a118e6d3b74ce9f862a0dd1035cbd6c66e9b8f /indra/newview | |
| parent | 2a81ebba5395981fcc03a62e0f43a3caa7a42156 (diff) | |
Log WebRTC devices on webrtc initialization.
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llvoicewebrtc.cpp | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/indra/newview/llvoicewebrtc.cpp b/indra/newview/llvoicewebrtc.cpp index 093b16eaad..387016f9af 100644 --- a/indra/newview/llvoicewebrtc.cpp +++ b/indra/newview/llvoicewebrtc.cpp @@ -269,6 +269,7 @@ void LLWebRTCVoiceClient::init(LLPumpIO* pump)      mWebRTCDeviceInterface = llwebrtc::getDeviceInterface();      mWebRTCDeviceInterface->setDevicesObserver(this);      mMainQueue = LL::WorkQueue::getInstance("mainloop"); +    refreshDeviceLists();  }  void LLWebRTCVoiceClient::terminate() @@ -637,7 +638,7 @@ void LLWebRTCVoiceClient::clearCaptureDevices()  void LLWebRTCVoiceClient::addCaptureDevice(const LLVoiceDevice& device)  { -    LL_DEBUGS("Voice") << "display: '" << device.display_name << "' device: '" << device.full_name << "'" << LL_ENDL; +    LL_INFOS("Voice") << "Voice Capture Device: '" << device.display_name << "' (" << device.full_name << ")" << LL_ENDL;      mCaptureDevices.push_back(device);  } @@ -706,7 +707,7 @@ void LLWebRTCVoiceClient::clearRenderDevices()  void LLWebRTCVoiceClient::addRenderDevice(const LLVoiceDevice& device)  { -    LL_DEBUGS("Voice") << "display: '" << device.display_name << "' device: '" << device.full_name << "'" << LL_ENDL; +    LL_INFOS("Voice") << "Voice Render Device: '" << device.display_name << "' (" << device.full_name << ")" << LL_ENDL;      mRenderDevices.push_back(device);  } | 
