Skip to content

Commit

Permalink
fix(core): Human readable output log of browser console
Browse files Browse the repository at this point in the history
  • Loading branch information
wadackel committed Nov 8, 2020
1 parent b988e36 commit 10c6c27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class Browser {
this._page.on('console', (message) => {
const args = message.args();
for (const msg of args) {
debug('browser.console: %O', msg);
debug('browser.console: %s', msg);
}
});

Expand Down

0 comments on commit 10c6c27

Please sign in to comment.