"..." logged in the console.log() at every Condition loop - Chrome plugin only
As described in the title, I have a Condition that matched JS code. In this code I simply wait until the "seconds" is 0,15,30 or 45.
return [0, 15, 30, 45].includes(new Date().getSeconds()); The failback action is a delay block of 1000ms.
This way I trigger executions every specific 15 seconds, which is what I need.
On Firefox (old plugin dated 2040) the console.log looks nice and clean and records only what I specified. On Chrome (latest plugin Version 1.29.12, dated August 11, 2025) I get "..." logged every second, so every Condition+delay iteration. It appears like they are logged at "Info" level. But that's how any other console.log added manually to the code gets printed on the console.
From my perspective, this is unwanted, so can this be disabled? If so how?
Thanks