LogCallStack

Kategorie: Entwickler
Ab Engineversion: 3.0 OC

Beschreibung

Prints out the current call stack without breaking execution flow.

Syntax

bool LogCallStack();

Beispiel

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.
Siehe auch: FatalError
Sven2, 2014-01