LogCallStack

Category: Developer
Since engine version: 3.0 OC

Description

Prints out the current call stack without breaking execution flow.

Syntax

bool LogCallStack();

Example

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.
See also: FatalError
Sven2, 2014-01