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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agora-appbuilder-core",
3
- "version": "4.0.10",
3
+ "version": "4.0.11",
4
4
  "description": "React Native template for RTE app builder",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -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
- logger.debug(
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
- logger.debug(
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
- logger.debug(
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
- logger.debug(
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
- logger.debug(
252
+ console.debug(
253
253
  LogSource.Internals,
254
254
  'DEVICE_CONFIGURE',
255
255
  'Refreshing',