Skip to content

Commit

Permalink
GH-2344 Re-establish the electron logger when starting from the comma…
Browse files Browse the repository at this point in the history
…nd line.

Signed-off-by: Jacques Bouthillier <jacques.bouthillier@ericsson.com>
  • Loading branch information
lmcbout committed Jul 19, 2018
1 parent 042a4c6 commit d38186e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ export class ApplicationPackageManager {
}

async startElectron(args: string[]): Promise<void> {
this.__process.spawnBin('electron', [this.pck.frontend('electron-main.js'), ...args]);
this.__process.spawnBin('electron', [this.pck.frontend('electron-main.js'), ...args],
{ stdio: [0, 1, 2] });
}

async startBrowser(args: string[]): Promise<void> {
Expand Down

0 comments on commit d38186e

Please sign in to comment.