Parcourir la source

Exposes logging an "application log" to callstats.

dev1
Boris Grozev il y a 9 ans
Parent
révision
073e0c6203
1 fichiers modifiés avec 8 ajouts et 1 suppressions
  1. 8
    1
      JitsiConference.js

+ 8
- 1
JitsiConference.js Voir le fichier

@@ -1002,7 +1002,14 @@ JitsiConference.prototype._reportAudioProblem = function (ssrc) {
1002 1002
         new Error(JSON.stringify(errorContent)));
1003 1003
     logger.error("Audio problem detected. The audio is received but not played",
1004 1004
         errorContent);
1005
-}
1005
+};
1006
+
1007
+/**
1008
+ * Logs an "application log" message
1009
+ */
1010
+JitsiConference.prototype.sendApplicationLog = function(message) {
1011
+    Statistics.sendLog(message);
1012
+};
1006 1013
 
1007 1014
 /**
1008 1015
  * Setups the listeners needed for the conference.

Chargement…
Annuler
Enregistrer