Skip to content

Commit

Permalink
FIX: Don’t truncate backtrace on copying
Browse files Browse the repository at this point in the history
  • Loading branch information
Flink committed Mar 12, 2024
1 parent c8b3482 commit a2286e0
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions client-app/app/components/message-info.js
Expand Up @@ -94,10 +94,7 @@ export default class MessageInfo extends Component {
: "Message";
const message = `${header}\n\n${this.currentMessage.message}`;

const backtrace = `Backtrace\n\n${this.currentMessage.backtrace
.split("\n")
.slice(0, 10)
.join("\n")}`;
const backtrace = `Backtrace\n\n${this.currentMessage.backtrace}`;

const httpHosts = Array.isArray(this.currentMessage.env)
? this.currentMessage.env
Expand Down

0 comments on commit a2286e0

Please sign in to comment.