gc.GarbageReferenceTrackingEnabled
gc.GarbageReferenceTrackingEnabled
#Overview
name: gc.GarbageReferenceTrackingEnabled
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Causes the Garbage Collector to track and log unreleased garbage objects. If 1, will dump every reference. If 2, will dump a sample of the references to highlight problematic properties.
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:252
Scope: file
Source code excerpt:
int32 GGarbageReferenceTrackingEnabled = 0;
static FAutoConsoleVariableRef CGarbageReferenceTrackingEnabled(
TEXT("gc.GarbageReferenceTrackingEnabled"),
GGarbageReferenceTrackingEnabled,
TEXT("Causes the Garbage Collector to track and log unreleased garbage objects. If 1, will dump every reference. If 2, will dump a sample of the references to highlight problematic properties."),
ECVF_Default
);
int32 GDelayReachabilityIterations = 0;