Prints out the current call stack without breaking execution flow.
func Destruction()
{
Log("Destruction of %v!", GetID());
LogCallStack();
return _inherited(...);
}
Helper function during development: When this object gets destructed, a call stack is printed. This may be useful to find out where a particular object removal call was coming from.