I’m running an application in Ubuntu that occasionally crashes. I’d like to capture the stack trace when the crash occurred. Is this possible?
I’m launching my app like this:
mono-service -m:logfile.out application.exe
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Are you capturing unhandled exceptions in the application? Take a look at:
http://msdn.microsoft.com/en-us/library/system.appdomain.unhandledexception.aspx
This should allow you to at least log any unhandled exceptions so you can get a better idea what’s happening.