diff options
author | Roxanne Skelly <roxie@lindenlab.com> | 2024-08-19 00:50:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-19 00:50:14 -0700 |
commit | 0f3ffb0fad721740f20ed5c7a74f4ceade6d46b6 (patch) | |
tree | 1023fed30cb70d1a2e3a01f6c18a6d4b798c6c38 /indra/newview | |
parent | 7cc3ff55b97b94a3b52daebfe072eb22192c710b (diff) | |
parent | 1ff30757bc3ccc4b2ac26f04bdc2ca99f25d694d (diff) |
Merge pull request #2324 from secondlife/roxie/webrtc-log-devices
[WebRTC] 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); } |