Skip to content

Commit

Permalink
Include stack trace when throwing an exception in Chrome Devtools panel
Browse files Browse the repository at this point in the history
  • Loading branch information
zalmoxisus committed Jun 22, 2016
1 parent ddb8d28 commit a2e5132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/browser/extension/devpanel/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function showDevTools() {
rendered = true;
} catch (error) {
render(
<div>{error.toString()}</div>,
<pre>{error.stack}</pre>,
document.getElementById('root')
);
}
Expand Down

0 comments on commit a2e5132

Please sign in to comment.