Skip to content

Commit

Permalink
Merge pull request #609 from coq-community/error-backtrace
Browse files Browse the repository at this point in the history
Remove backtrace from errors by default
  • Loading branch information
rtetley authored Sep 4, 2023
2 parents ef34537 + f9677f4 commit dead809
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion client/search-ui/src/components/atoms/Error.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const error: FunctionComponent<ErrorProps> = (props) => {

return (
<div className={classes.Error}>
<span className={classes.ErrorHeader}> Error {error.code} </span>
<span className={classes.ErrorHeader}> Error </span>
<span className={classNames.join(' ')}> {error.message} </span>
</div>
);
Expand Down
1 change: 0 additions & 1 deletion language-server/vscoqtop/vscoqtop.ml
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,4 @@ let _ =
Safe_typing.allow_delayed_constants := true; (* Needed to delegate or skip proofs *)
Flags.quiet := true;
Sys.(set_signal sigint Signal_ignore);
Exninfo.record_backtrace true;
loop injections

0 comments on commit dead809

Please sign in to comment.