Skip to content
Snippets Groups Projects
Unverified Commit 0ed65636 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #12752 from mariogasparoni/improve-audio-log

chore(audio): add audio join time in extraInfo of server log
parents e0259d69 4e1eb731
No related branches found
No related tags found
No related merge requests found
......@@ -372,8 +372,12 @@ class AudioManager {
if (!this.logAudioJoinTime) {
this.logAudioJoinTime = true;
logger.info({ logCode: 'audio_mic_join_time' }, 'Time needed to '
+ `connect audio (seconds): ${secondsToActivateAudio}`);
logger.info({
logCode: 'audio_mic_join_time',
extraInfo: {
secondsToActivateAudio,
},
}, `Time needed to connect audio (seconds): ${secondsToActivateAudio}`);
}
if (!this.isEchoTest) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment