
So I have been dabbling with a character sheet with a script worker and noticed something weird... <script type="text/worker"> console.log("Testing..."); on("change:coord_x", function() { setAttrs({"Coord_Y": 250, "Coord_Z": 895}); console.log("Testing coord x change"); }); </script> This first console.log("Testing...") send the output to the API console, but the second sends the output to the HTML console in Chrome. I assume this is because the the first one is being triggered by the API when the game is started and the second is being triggered by the HTML interaction through Chrome. Otherwise, the script runs exactly as expected. So, is there a way to force the console.log output to always send to the API console?