diff --git a/packages/calling-stateful-client/src/CallContext.ts b/packages/calling-stateful-client/src/CallContext.ts index c8fcdd238de..4691139781b 100644 --- a/packages/calling-stateful-client/src/CallContext.ts +++ b/packages/calling-stateful-client/src/CallContext.ts @@ -130,7 +130,6 @@ export class CallContext { } public modifyState(modifier: (draft: CallClientState) => void): void { - console.log('DEBUG modifyState'); const priorState = this._state; this._state = produce(this._state, modifier, (patches: Patch[]) => { if (getLogLevel() === 'verbose') { diff --git a/packages/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.ts b/packages/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.ts index 30c9fd2358d..1460a3cf3be 100644 --- a/packages/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.ts +++ b/packages/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.ts @@ -473,13 +473,6 @@ export class AzureCommunicationCallAdapter `id:${c.id}-state:${c.state}-assignedBR:${c.breakoutRooms?.assignedBreakoutRoom?.call?.id}`) - .join(', ') - ); - // if the call hits the connected state we want to pause all calling sounds if playing. if (this.call?.state === 'Connected' && this.callingSoundSubscriber?.playingSounds) { this.callingSoundSubscriber.pauseSounds(); @@ -1215,7 +1208,6 @@ export class AzureCommunicationCallAdapter { const callState = this.call?.id ? this.callClient.getState().calls[this.call.id] : undefined; - console.log('DEBUGJ returnFromBreakoutRoom callState?.breakoutRooms: ', callState?.breakoutRooms); const assignedBreakoutRoom = callState?.breakoutRooms?.assignedBreakoutRoom; if (!assignedBreakoutRoom) { @@ -1500,11 +1492,7 @@ export class AzureCommunicationCallAdapter