If the detached option is set, the child process will be made the leader of a new process group. This makes it possible for the child to continue running after the parent exits.
…
When using the detached option to start a long-running process, the process will not stay running in the background unless it is provided with a stdio configuration that is not connected to the parent. If the parent's stdio is inherited, the child will remain attached to the controlling terminal.
We use the detatched option, which means stdio is ignored.
This won't work, closing the ticket.
Displaying the command line output won’t work, at least without some more intrusive updates.
From the Node JS docs: https://node.readthedocs.io/en/latest/api/child_process/
We use the detatched option, which means stdio is ignored.