|
@@ -1255,9 +1255,14 @@ export default {
|
1255
|
1255
|
|
1256
|
1256
|
APP.UI.addListener(UIEvents.RESOLUTION_CHANGED,
|
1257
|
1257
|
(id, oldResolution, newResolution, delay) => {
|
1258
|
|
- room.sendApplicationLog("Resolution change id=" + id
|
1259
|
|
- + " old=" + oldResolution + " new=" + newResolution
|
1260
|
|
- + " delay=" + delay);
|
|
1258
|
+ var logObject = {
|
|
1259
|
+ id: "resolution_change",
|
|
1260
|
+ participant: id,
|
|
1261
|
+ oldValue: oldResolution,
|
|
1262
|
+ newValue: newResolution,
|
|
1263
|
+ delay: delay
|
|
1264
|
+ };
|
|
1265
|
+ room.sendApplicationLog(JSON.stringify(logObject));
|
1261
|
1266
|
});
|
1262
|
1267
|
|
1263
|
1268
|
// Starts or stops the recording for the conference.
|