TimerManager.DumpTimerLogsThreshold
TimerManager.DumpTimerLogsThreshold
#Overview
name: TimerManager.DumpTimerLogsThreshold
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Threshold (in milliseconds) after which we log timer info to try and help track down spikes in the timer code. Disabled when set to 0
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:27
Scope: file
Source code excerpt:
static float DumpTimerLogsThreshold = 0.f;
static FAutoConsoleVariableRef CVarDumpTimerLogsThreshold(
TEXT("TimerManager.DumpTimerLogsThreshold"), DumpTimerLogsThreshold,
TEXT("Threshold (in milliseconds) after which we log timer info to try and help track down spikes in the timer code. Disabled when set to 0"),
ECVF_Default);
static int32 DumpTimerLogResolveVirtualFunctions = 1;
static FAutoConsoleVariableRef CVarDumpTimerLogResolveVirtualFunctions(
TEXT("TimerManager.DumpTimerLogResolveVirtualFunctions"), DumpTimerLogResolveVirtualFunctions,