I\'m using getTraceAsString() to get a stack trace but the string is being truncated for some reason.
getTraceAsString()
Example, an exception is thrown and I log the stri
If you can get away with var_dump() an easy solution is:
var_dump()
try { ... } catch (Exception $e) var_dump($e->getTrace()); }
Stolen from this great answer by Andre