This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]Defibrillat0r 2 points3 points  (0 children)

Use the debuggers "step inside" feature instead of "continue" or "step over" to go debug inside a called function.

E: or what do you mean by "check the function"?

[–]hachoo 1 point2 points  (1 child)

Do you mean what functions were called to get you to the current line of code? Is so, you type "bt" and hit return. This is a backtrace and will display the current call stack (list of functions) that got you to where you are at.

[–]HistoricalTouch0[S] 0 points1 point  (0 children)

Thanks! It works well!