Commit 497605ae authored by Kenton Varda's avatar Kenton Varda

Reduce noise when dumping stack traces.

parent 915284ad
......@@ -128,7 +128,7 @@ String stringifyStackTrace(ArrayPtr<void* const> trace) {
size_t len = strlen(line);
if (len > 0 && line[len-1] == '\n') line[len-1] = '\0';
lines[i++] = str("\n", line, ": called here");
lines[i++] = str("\n ", trimSourceFilename(line), ": called here");
}
// Skip remaining input.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment