Formats the resolution change log as JSON.

This commit is contained in:
Boris Grozev 2016-07-28 11:01:13 -05:00
parent 330597182c
commit ddb356482f
1 changed files with 8 additions and 3 deletions

View File

@ -1255,9 +1255,14 @@ export default {
APP.UI.addListener(UIEvents.RESOLUTION_CHANGED, APP.UI.addListener(UIEvents.RESOLUTION_CHANGED,
(id, oldResolution, newResolution, delay) => { (id, oldResolution, newResolution, delay) => {
room.sendApplicationLog("Resolution change id=" + id var logObject = {
+ " old=" + oldResolution + " new=" + newResolution id: "resolution_change",
+ " delay=" + delay); participant: id,
oldValue: oldResolution,
newValue: newResolution,
delay: delay
};
room.sendApplicationLog(JSON.stringify(logObject));
}); });
// Starts or stops the recording for the conference. // Starts or stops the recording for the conference.