File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -269,6 +269,7 @@ void LLWebRTCVoiceClient::init(LLPumpIO* pump)
269
269
mWebRTCDeviceInterface = llwebrtc::getDeviceInterface ();
270
270
mWebRTCDeviceInterface ->setDevicesObserver (this );
271
271
mMainQueue = LL::WorkQueue::getInstance (" mainloop" );
272
+ refreshDeviceLists ();
272
273
}
273
274
274
275
void LLWebRTCVoiceClient::terminate ()
@@ -637,7 +638,7 @@ void LLWebRTCVoiceClient::clearCaptureDevices()
637
638
638
639
void LLWebRTCVoiceClient::addCaptureDevice (const LLVoiceDevice& device)
639
640
{
640
- LL_DEBUGS (" Voice" ) << " display : '" << device.display_name << " ' device: ' " << device.full_name << " ' " << LL_ENDL;
641
+ LL_INFOS (" Voice" ) << " Voice Capture Device : '" << device.display_name << " ' ( " << device.full_name << " ) " << LL_ENDL;
641
642
mCaptureDevices .push_back (device);
642
643
}
643
644
@@ -706,7 +707,7 @@ void LLWebRTCVoiceClient::clearRenderDevices()
706
707
707
708
void LLWebRTCVoiceClient::addRenderDevice (const LLVoiceDevice& device)
708
709
{
709
- LL_DEBUGS (" Voice" ) << " display : '" << device.display_name << " ' device: ' " << device.full_name << " ' " << LL_ENDL;
710
+ LL_INFOS (" Voice" ) << " Voice Render Device : '" << device.display_name << " ' ( " << device.full_name << " ) " << LL_ENDL;
710
711
mRenderDevices .push_back (device);
711
712
712
713
}
You can’t perform that action at this time.
0 commit comments