net.DelinquencyNumberOfTopOffendersToTrack
net.DelinquencyNumberOfTopOffendersToTrack
#Overview
name: net.DelinquencyNumberOfTopOffendersToTrack
This variable is created as a Console Variable (cvar).
- type: 
Var - help: 
When > 0 , this will be the number of \'TopOffenders\' that are tracked by the PackageMap and GuidCache for Queued Actors and Async Loads respectively. net.TrackAsyncLoadingGUIDThreshold / net.TrackQueuedActorThreshold still dictate whether or not any of these items are tracked. 
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/PackageMapClient.cpp:177
Scope: file
Source code excerpt:
static int32 GDelinquencyNumberOfTopOffendersToTrack = 10;
static FAutoConsoleVariableRef CVarDelinquencyNumberOfTopOffendersToTrack(
	TEXT("net.DelinquencyNumberOfTopOffendersToTrack"),
	GDelinquencyNumberOfTopOffendersToTrack,
	TEXT("When > 0 , this will be the number of 'TopOffenders' that are tracked by the PackageMap and GuidCache for"
		" Queued Actors and Async Loads respectively."
		" net.TrackAsyncLoadingGUIDThreshold / net.TrackQueuedActorThreshold still dictate whether or not any of these"
		" items are tracked.")
);