Skip to content

Commit

Permalink
[Reporting] Make screenshot capture less noisy by default (#45185)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsullivan authored Sep 9, 2019
1 parent d041d92 commit 8492821
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export class HeadlessChromiumDriverFactory {
if (line.type() === 'error') {
this.logger.error(line.text(), ['headless-browser-console']);
} else {
this.logger.debug(line.text(), [line.type(), 'headless-browser-console']);
this.logger.debug(line.text(), [`headless-browser-console:${line.type()}`]);
}
})
);
Expand Down

0 comments on commit 8492821

Please sign in to comment.