fix stdout

This commit is contained in:
Matias Alejo Garcia 2014-07-07 11:08:50 -03:00
parent be8635abbf
commit 4e2414d78b
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ switch (process.platform) {
var copay = spawn(execPath, [appPath]); var copay = spawn(execPath, [appPath]);
copay.stdout.on('data', function(data) { copay.stdout.on('data', function(data) {
console.log(data); console.log("STDOUT:" + data);
}); });
copay.stderr.on('data', function(data) { copay.stderr.on('data', function(data) {