remove anoying backtrace
This commit is contained in:
parent
7ef1898be5
commit
e0ff5b3580
|
@ -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) => {
|
||||||
|
|
Loading…
Reference in New Issue