View Single Post
  #7  
Old 06-09-2012, 12:13 AM
lerxst2112
Demi-God
 
Join Date: Aug 2010
Posts: 1,742
Default

When it crashes, type 'bt' to see a stack trace with the variables that were passed to the function. 'info locals' will show you the local variables for a particular stack frame, and 'print x' will show you the contents of other variables, where 'x' is their name. 'up' moves up a frame, and 'down' moves down a frame.
Reply With Quote