|
|
@@ -1342,6 +1342,14 @@ function setupListeners(conference) {
|
|
1342
|
1342
|
conference.statistics.sendMuteEvent(track.isMuted(), type);
|
|
1343
|
1343
|
});
|
|
1344
|
1344
|
|
|
|
1345
|
+ // log all events for the recorder operated by the moderator
|
|
|
1346
|
+ if (conference.isModerator()) {
|
|
|
1347
|
+ conference.on(JitsiConferenceEvents.RECORDER_STATE_CHANGED,
|
|
|
1348
|
+ function (status, error) {
|
|
|
1349
|
+ conference.statistics.sendLog("Recorder: " + status);
|
|
|
1350
|
+ });
|
|
|
1351
|
+ }
|
|
|
1352
|
+
|
|
1345
|
1353
|
conference.room.addListener(XMPPEvents.CREATE_OFFER_FAILED, function (e, pc) {
|
|
1346
|
1354
|
conference.statistics.sendCreateOfferFailed(e, pc);
|
|
1347
|
1355
|
});
|