diff --git a/js/error_report.js b/js/error_report.js index 3a23c101fd..466bf96099 100644 --- a/js/error_report.js +++ b/js/error_report.js @@ -213,8 +213,8 @@ var ErrorReport = { var stack = exception.stack[i]; if (stack.context && stack.context.length) { for (var j = 0; j < stack.context.length; j++) { - if (stack.context[j].length > 180) { - stack.context[j] = stack.context[j].substring(-1, 180); + if (stack.context[j].length > 80) { + stack.context[j] = stack.context[j].substring(-1, 75) + '//...'; } } }