Reviewed InputWorker

This commit is contained in:
n1474335 2023-01-19 16:56:07 +00:00
parent 91f1be8c70
commit 934efcc5a0
2 changed files with 20 additions and 35 deletions

View file

@ -738,8 +738,8 @@ class WorkerWaiter {
* Sets the console log level in the workers.
*/
setLogLevel() {
this.chefWorkers.forEach(w => {
w.postMessage({
this.chefWorkers.forEach(cw => {
cw.worker.postMessage({
action: "setLogLevel",
data: log.getLevel()
});