From 66b3aeeebaef0150335d90443010be8d79414ac9 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Thu, 3 Dec 2015 14:20:29 -0800 Subject: [PATCH] ignore stdio from child process --- console/modules/hf-process.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/console/modules/hf-process.js b/console/modules/hf-process.js index bc018ed982..d8ab0abfd1 100755 --- a/console/modules/hf-process.js +++ b/console/modules/hf-process.js @@ -54,7 +54,8 @@ Process.prototype = extend(Process.prototype, { console.log("Starting " + this.command); try { this.child = childProcess.spawn(this.command, this.commandArgs, { - detached: false + detached: false, + stdio: 'ignore' }); //console.log("started ", this.child); this.child.on('error', this.onChildStartError.bind(this));