Buk

Results 2 comments of Buk

comment out these lines of code ![image](https://user-images.githubusercontent.com/38726443/207521956-c3cd1950-9005-483d-9864-ef319b78f372.png)

[Utility Process] Data can be returned to the main process for printing through `process.parentPort.postMessage` ``` process.parentPort.postMessage({ event: 'LOG', data }) ``` [Main Process] ``` this.utilityProcess.on('message', (message: any) => { const...