File tree Expand file tree Collapse file tree
HarmonyOS_NEXT/APIExample/entry/src/main/ets/pages/basic Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ import { backgroundTaskManager } from '@kit.BackgroundTasksKit';
2525import { BusinessError } from '@kit.BasicServicesKit';
2626import { AVCastPicker } from '@kit.AVSessionKit';
2727import { audio } from '@kit.AudioKit';
28- import image from '@ohos.multimedia.image';
2928
3029const TAG: string = 'JoinAudioChannel'
3130
@@ -150,7 +149,7 @@ struct JoinAudioChannel {
150149 config.mAppId = AppID;
151150 config.mEventHandler = {};
152151 config.mEventHandler.onAudioVolumeIndication = (speakers: Array<AudioVolumeInfo>, totalVolume: number) => {
153- Logger.info(` totalVolume:${totalVolume} speakers:${JSON.stringify(speakers)}`)
152+ Logger.info(TAG,`onAudioVolumeIndication totalVolume:${totalVolume} speakers:${JSON.stringify(speakers)}`)
154153 }
155154 config.mEventHandler.onUserJoined = (uid: number, collapse: number) => {
156155 Logger.info(TAG, "mEventHandler.onUserJoined: " + uid + " , " + collapse);
You can’t perform that action at this time.
0 commit comments