From 4e2414d78bfe76e274f1e8bd576ab2d885375488 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Mon, 7 Jul 2014 11:08:50 -0300 Subject: [PATCH] fix stdout --- shell/scripts/launch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/scripts/launch.js b/shell/scripts/launch.js index defdf9554..e586a297d 100644 --- a/shell/scripts/launch.js +++ b/shell/scripts/launch.js @@ -27,7 +27,7 @@ switch (process.platform) { var copay = spawn(execPath, [appPath]); copay.stdout.on('data', function(data) { - console.log(data); + console.log("STDOUT:" + data); }); copay.stderr.on('data', function(data) {