TimerManager.DumpAllTimerLogsThreshold
TimerManager.DumpAllTimerLogsThreshold
#Overview
name: TimerManager.DumpAllTimerLogsThreshold
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Threshold (in count of active timers) at which to dump info about all active timers to logs. -1 means this is disabled. NOTE: This will only be dumped once per process launch.
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/TimerManager.cpp:56
Scope: file
Source code excerpt:
static int32 DumpAllTimerLogsThreshold = -1;
static FAutoConsoleVariableRef CVarDumpAllTimerLogsThreshold(
TEXT("TimerManager.DumpAllTimerLogsThreshold"),
DumpAllTimerLogsThreshold,
TEXT("Threshold (in count of active timers) at which to dump info about all active timers to logs. -1 means this is disabled. NOTE: This will only be dumped once per process launch."));
#endif // #if UE_ENABLE_DUMPALLTIMERLOGSTHRESHOLD
#if UE_ENABLE_TRACKING_TIMER_SOURCES