remove anoying backtrace

This commit is contained in:
Iuri Matias 2018-06-12 13:58:21 -04:00
parent 7ef1898be5
commit e0ff5b3580
1 changed files with 3 additions and 1 deletions

View File

@ -141,7 +141,9 @@ Blockchain.prototype.run = function() {
return; return;
} }
args = _.compact(args); args = _.compact(args);
console.trace(`Geth command: ${cmd} ${args.join(' ')}`);
let full_cmd = cmd + " " + args.join(' ');
console.log(__("running: %s", full_cmd.underline).green);
self.child = child_process.spawn(cmd, args, {cwd: process.cwd()}); self.child = child_process.spawn(cmd, args, {cwd: process.cwd()});
self.child.on('error', (err) => { self.child.on('error', (err) => {