The problem is all logs from NBminer shown like errors
In my case,
for running miner I use
this.miningProcess = childProcess.spawn( 'cmd.exe', [' runas /noprofile /user:Administrator /c',"${nbminerPath}", ...args], { shell: true } );
also, I use stdout.onfor showing logs on the client
this.miningProcess.stdout.on('data', (data) => { this.loggerService.logMiningData(data, this.miningProcess); });
The problem is all logs from NBminer shown like errors
In my case, for running miner I use
this.miningProcess = childProcess.spawn( 'cmd.exe', [' runas /noprofile /user:Administrator /c',
"${nbminerPath}", ...args], { shell: true } );
also, I use
stdout.on
for showing logs on the clientthis.miningProcess.stdout.on('data', (data) => { this.loggerService.logMiningData(data, this.miningProcess); });