agora-appbuilder-core 4.0.10 → 4.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -163,7 +163,7 @@ const DeviceConfigure: React.FC<Props> = (props: any) => {
|
|
|
163
163
|
let updatedDeviceList: MediaDeviceInfo[];
|
|
164
164
|
await RtcEngineUnsafe.getDevices(function (devices: deviceInfo[]) {
|
|
165
165
|
!noEmitLog &&
|
|
166
|
-
|
|
166
|
+
console.debug(
|
|
167
167
|
LogSource.Internals,
|
|
168
168
|
'DEVICE_CONFIGURE',
|
|
169
169
|
'Fetching all devices: ',
|
|
@@ -191,7 +191,7 @@ const DeviceConfigure: React.FC<Props> = (props: any) => {
|
|
|
191
191
|
);
|
|
192
192
|
|
|
193
193
|
!noEmitLog &&
|
|
194
|
-
|
|
194
|
+
console.debug(
|
|
195
195
|
LogSource.Internals,
|
|
196
196
|
'DEVICE_CONFIGURE',
|
|
197
197
|
'Setting unique devices',
|
|
@@ -224,7 +224,7 @@ const DeviceConfigure: React.FC<Props> = (props: any) => {
|
|
|
224
224
|
RtcEngineUnsafe.audioDeviceId
|
|
225
225
|
: //@ts-ignore
|
|
226
226
|
RtcEngineUnsafe.videoDeviceId;
|
|
227
|
-
|
|
227
|
+
console.debug(
|
|
228
228
|
LogSource.Internals,
|
|
229
229
|
'DEVICE_CONFIGURE',
|
|
230
230
|
`Agora ${type} Engine is using ${currentDevice}`,
|
|
@@ -233,7 +233,7 @@ const DeviceConfigure: React.FC<Props> = (props: any) => {
|
|
|
233
233
|
currentDevice = localStream[type]
|
|
234
234
|
?.getMediaStreamTrack()
|
|
235
235
|
.getSettings().deviceId;
|
|
236
|
-
|
|
236
|
+
console.debug(
|
|
237
237
|
LogSource.Internals,
|
|
238
238
|
'DEVICE_CONFIGURE',
|
|
239
239
|
`Agora ${type} Track is using ${currentDevice}`,
|
|
@@ -249,7 +249,7 @@ const DeviceConfigure: React.FC<Props> = (props: any) => {
|
|
|
249
249
|
* truth.
|
|
250
250
|
*/
|
|
251
251
|
const syncSelectedDeviceUi = (kind?: deviceKind) => {
|
|
252
|
-
|
|
252
|
+
console.debug(
|
|
253
253
|
LogSource.Internals,
|
|
254
254
|
'DEVICE_CONFIGURE',
|
|
255
255
|
'Refreshing',
|