Line numbers in stack trace

blabore

Freshman
Joined
Jan 31, 2002
Messages
48
Location
Austin, TX
I have an application I've deployed that automatically logs exceptions, including the stack trace. I've noticed however that the stack trace does no longer includes line numbers when the application is compiled in release configuration. Is there any way to turn this back on? Thanks in advance.
 
Release mode does not contain debugging info like that. Thats why its faster, its freed of all that info that is required for debugging.
 
Back
Top