Log the action to the console, instead of the entire event.

This commit is contained in:
CalDescent 2023-05-08 14:43:00 +01:00
parent 81788610c4
commit df3c68679f

View File

@ -169,7 +169,7 @@ window.addEventListener("message", (event) => {
return;
}
console.log("Core received event: " + JSON.stringify(event.data));
console.log("Core received action: " + JSON.stringify(event.data.action));
let url;
let data = event.data;