Hi Michael
Good question - `i had to search around for an answer.
I've not tried this but the logging is done (or not) within the underlying ewd-qoper8 module. Its properties and methods are exposed in QEWD via this.q I believe.
So when you start QEWD, you can run the toggleLogging() method to turn logging off (the default should be logging is on):
this.q.toggleLogging();
I think you may also be able to do it directly:
this.q.log = true | false
You need to set this before any messages get sent to workers, since the current value of this.log is propagated to any new worker when it starts up
Let me know if this helps!
Rob