Skip to content

Commit

Permalink
feat(log): Set the --log-all flag when starting our own backend (#401)
Browse files Browse the repository at this point in the history
  • Loading branch information
dustmop authored and ramfox committed Jan 22, 2020
1 parent b08f8f8 commit 9c53a43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/backend.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class BackendProcess {
try {
let processResult = childProcess.execSync(this.qriBinPath + ' version')
let qriBinVersion = processResult.toString().trim();
this.process = childProcess.spawn(this.qriBinPath, ['connect', '--setup'], { stdio: ['ignore', this.out, this.err] })
this.process = childProcess.spawn(this.qriBinPath, ['connect', '--setup', '--log-all'], { stdio: ['ignore', this.out, this.err] })
this.process.on('error', (err) => { this.handleEvent('error', err) })
this.process.on('exit', (err) => { this.handleEvent('exit', err) })
this.process.on('close', (err) => { this.handleEvent('close', err) })
Expand Down

0 comments on commit 9c53a43

Please sign in to comment.