Skip to content

Commit

Permalink
Omit circular structures from debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
rlidwka committed Dec 8, 2021
1 parent e252e7a commit 8144793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/electron/driver/bridge.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ runner.on('open', (event, url, options) => {
headers: headerArray
};

notify([ 'header event', details ]);
notify([ 'header event', Object.assign({}, details, { frame: null, webContents: null }) ]);
callback({});
}

Expand Down

0 comments on commit 8144793

Please sign in to comment.