Show stack traces
So maybe this is the question not to the developers of this, but maybe you know the answer. What should I do (is it possible) to display stack traces for exception messages?
Adding this to DrawExpandedLog() worked for me.
if (log.type == LogType.Exception && log.stackTrace != "")
GUILayout.Label(log.stackTrace);
I'm going to reopen this — it'd be useful to show the stack trace by clicking on a line. We store the stack trace; might as well provide a way to see it.
I see this is a bit of an old request - are you still considering it? If so, would you consider a PR? No promises that I can, but we've been using the package and it's working real nice for us, stack traces would be an excellent upgrade to our workflow for sure 😊
@ettmetal: I definitely still think stack traces are a useful feature to add. A PR would be rad; I’m very happy to take contributions. I’ve been meaning to implement it myself but I just haven’t got around to it.
I added the ability to view stack traces in dcd5cd9. Click a log to see the trace appears below it.