|
|
@@ -1203,12 +1203,15 @@ JitsiConference.prototype._reportAudioProblem = function (ssrc) {
|
|
1203
|
1203
|
});
|
|
1204
|
1204
|
}
|
|
1205
|
1205
|
|
|
1206
|
|
- this.statistics.sendDetectedAudioProblem(
|
|
1207
|
|
- new Error(JSON.stringify(errorContent)));
|
|
1208
|
1206
|
// Prints JSON.stringify(errorContent) to be able to see all properties of
|
|
1209
|
1207
|
// errorContent from torture
|
|
1210
|
1208
|
logger.error("Audio problem detected. The audio is received but not played",
|
|
1211
|
1209
|
errorContent);
|
|
|
1210
|
+
|
|
|
1211
|
+ delete errorContent.displayName;
|
|
|
1212
|
+
|
|
|
1213
|
+ this.statistics.sendDetectedAudioProblem(
|
|
|
1214
|
+ new Error(JSON.stringify(errorContent)));
|
|
1212
|
1215
|
};
|
|
1213
|
1216
|
|
|
1214
|
1217
|
/**
|