gc.DumpAnalyticsToLog
gc.DumpAnalyticsToLog
#Overview
name: gc.DumpAnalyticsToLog
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Dumps Garbage Collection analytics to log at the end of each GC.
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/CoreUObject/Private/UObject/GarbageCollection.cpp:334
Scope: file
Source code excerpt:
static int32 GDumpGCAnalyticsToLog = 0;
static FAutoConsoleVariableRef CVarDumpGCAnalyticsToLog(
TEXT("gc.DumpAnalyticsToLog"),
GDumpGCAnalyticsToLog,
TEXT("Dumps Garbage Collection analytics to log at the end of each GC."),
ECVF_Default
);
#endif