We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ee73d4 commit c569e23Copy full SHA for c569e23
1 file changed
src/room/RTCEngine.ts
@@ -503,7 +503,11 @@ export default class RTCEngine extends (EventEmitter as new () => TypedEventEmit
503
if (!this.pcManager) {
504
return;
505
}
506
- this.log.debug('received server answer', { ...this.logContext, RTCSdpType: sd.type });
+ this.log.debug('received server answer', {
507
+ ...this.logContext,
508
+ RTCSdpType: sd.type,
509
+ sdp: sd.sdp,
510
+ });
511
await this.pcManager.setPublisherAnswer(sd, offerId);
512
};
513
0 commit comments