How can BugTrapper produce a stack dump for an assertion?
Assertions are not really crashes, so you will not see this type of stack display from BugTrapper. If you would like to see which functions caused an assertion, simply put a trace marker for this assertion function. To do this, go to the trace options dialog box and do a search for ‘_assert’. Once you find it, place a check mark on it to record it. This will ensure that it will be recorded once a function in your application calls an assertion. You should note that this will only work on the debug builds since assertions are not used at all for Release builds.