TimerManager.MaxExpiredTimersToLog
TimerManager.MaxExpiredTimersToLog
#Overview
name: TimerManager.MaxExpiredTimersToLog
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Maximum number of TimerData exceeding the threshold to log in a single frame.
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:45
Scope: file
Source code excerpt:
static int32 MaxExpiredTimersToLog = 30;
static FAutoConsoleVariableRef CVarMaxExpiredTimersToLog(
TEXT("TimerManager.MaxExpiredTimersToLog"),
MaxExpiredTimersToLog,
TEXT("Maximum number of TimerData exceeding the threshold to log in a single frame."));
#ifndef UE_ENABLE_DUMPALLTIMERLOGSTHRESHOLD
#define UE_ENABLE_DUMPALLTIMERLOGSTHRESHOLD !UE_BUILD_SHIPPING
#endif