Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm not entirely sure if the StackTrace does not work correctly when deploying in release mode, however, we want to log all the exceptions so we can make bug tracking easier when deploying, and of course, deploying in debug mode is not an option. The info we need from the StackTrace class is the file name, the method, and the line number in which the exception occurred.

What settings do I need to get these three values from the StackTrace and minimize the extra debugging info that deploying in Debug mode brings?

Thanks.

share|improve this question

1 Answer

up vote 5 down vote accepted

You would need to deploy your .pdb symbol files in order to do that in Release mode (and possibly turn off some optimisations, which may or may not be acceptable).

Related SO questions:

share|improve this answer
One more: stackoverflow.com/questions/585397/… – Nick Craver Feb 27 '10 at 2:07
Sounds good I'll be taking a look at these and get back to you. Thanks! – Carlo Feb 27 '10 at 2:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.