Re: [go-nuts] Getting stack trace from panic before/on recover()

2018-10-09 Thread jclc via golang-nuts
Wow, so it really was that easy... Thanks a lot. On Tuesday, October 9, 2018 at 11:04:24 PM UTC+3, Ian Lance Taylor wrote: > > On Tue, Oct 9, 2018 at 11:49 AM, jclc via golang-nuts > > wrote: > > I'm trying to make a graphical crash window on my program for my users > who > > will not have

Re: [go-nuts] Getting stack trace from panic before/on recover()

2018-10-09 Thread Ian Lance Taylor
On Tue, Oct 9, 2018 at 11:49 AM, jclc via golang-nuts wrote: > I'm trying to make a graphical crash window on my program for my users who > will not have terminal access. I can panic with my own custom crash dumps > that include details that I can then handle after recover(), but I can't get >

[go-nuts] Getting stack trace from panic before/on recover()

2018-10-09 Thread jclc via golang-nuts
I'm trying to make a graphical crash window on my program for my users who will not have terminal access. I can panic with my own custom crash dumps that include details that I can then handle after recover(), but I can't get anything useful from a standard library panic. If the user tells me