Commit 95a1d853 authored by Kenton Varda's avatar Kenton Varda

Increase exception stack trace length, because short traces are getting annoying.

parent ec86305e
......@@ -85,7 +85,7 @@ String stringifyStackTrace(ArrayPtr<void* const> trace) {
}
KJ_DEFER(if (oldPreload != nullptr) { setenv("LD_PRELOAD", oldPreload.cStr(), true); });
String lines[8];
String lines[32];
FILE* p = nullptr;
#if __linux__
......
......@@ -114,7 +114,7 @@ private:
Type type;
String description;
Maybe<Own<Context>> context;
void* trace[16];
void* trace[32];
uint traceCount;
friend class ExceptionImpl;
......
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