diff --git a/src/component/internal/webrtc.ts b/src/component/internal/webrtc.ts index 6066cfc2..fb9d9675 100644 --- a/src/component/internal/webrtc.ts +++ b/src/component/internal/webrtc.ts @@ -86,13 +86,13 @@ export class NekoWebRTC extends EventEmitter { this._peer.onicecandidate = (event: RTCPeerConnectionIceEvent) => { if (!event.candidate) { - this._log.debug(`sent all remote ICE candidates`) + this._log.debug(`sent all local ICE candidates`) return } const init = event.candidate.toJSON() this.emit('candidate', init) - this._log.debug(`sending remote ICE candidate`, { init }) + this._log.debug(`sending local ICE candidate`, { init }) } this._peer.onicecandidateerror = (event: Event) => {