Stall.RecordDump
Stall.RecordDump
#Overview
name: Stall.RecordDump
The value of this variable can be defined or overridden in .ini config files. 1
.ini config file referencing this setting variable.
It is referenced in 1
C++ source file.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Engine/Config/BaseEngine.ini:3370, section: [CrashReportClient]
- INI Section:
CrashReportClient
- Raw value:
false
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Core/Private/Windows/WindowsPlatformCrashContext.cpp:253
Scope (from outer to inner):
file
function void FWindowsPlatformCrashContext::CopyPlatformSpecificFiles
Source code excerpt:
{
case ECrashContextType::Stall:
GConfig->GetBool(TEXT("CrashReportClient"), TEXT("Stall.RecordDump"), bRecordCrashDump, GEngineIni);
break;
case ECrashContextType::Ensure:
GConfig->GetBool(TEXT("CrashReportClient"), TEXT("Ensure.RecordDump"), bRecordCrashDump, GEngineIni);
break;
case ECrashContextType::AbnormalShutdown:
case ECrashContextType::Assert: