Feat/freeswitch logging (#1309)

* include callSid on INVITEs to freeeswitch

* remove unnecessary warning
This commit is contained in:
Dave Horton
2025-08-04 09:19:47 -04:00
committed by GitHub
parent b1089a1ae9
commit 1933f4ec0b
2 changed files with 2 additions and 3 deletions

View File

@@ -2378,6 +2378,7 @@ Duration=${duration} `
const ep = await this._createMediaEndpoint({
headers: {
'X-Jambones-Call-ID': this.callId,
'X-Call-Sid': this.callSid,
},
remoteSdp: this.req.body
});

View File

@@ -101,8 +101,6 @@ class SttLatencyCalculator extends Emitter {
}
this.isRunning = false;
this.logger.info('STT Latency Calculator stopped');
} else {
this.logger.warn('Latency calculator is not running, no VAD detection to stop');
}
}
@@ -116,7 +114,7 @@ class SttLatencyCalculator extends Emitter {
return;
}
this._startVad();
this.logger.info('STT Latency Calculator started');
this.logger.debug('STT Latency Calculator started');
}
stop() {