Skip to content

Commit

Permalink
launcher: log the specific chrome spawn command.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed Jul 5, 2017
1 parent 2004363 commit 3f143b1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions chrome-launcher/chrome-launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@ export class Launcher {
this.port = await getRandomPort();
}

log.verbose(
'ChromeLauncher', `Launching with command:\n"${execPath}" ${this.flags.join(' ')}`);
const chrome = this.spawn(
execPath, this.flags, {detached: true, stdio: ['ignore', this.outFile, this.errFile]});
this.chrome = chrome;
Expand Down

0 comments on commit 3f143b1

Please sign in to comment.