Automation.CaptureLogEvents
Automation.CaptureLogEvents
#Overview
name: Automation.CaptureLogEvents
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Consider warning/error log events during a test as impacting the test itself
It is referenced in 2
C++ source files.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Core/Private/Misc/AutomationTest.cpp:29
Scope (from outer to inner):
file
namespace AutomationTest
Source code excerpt:
static bool bCaptureLogEvents = true;
static FAutoConsoleVariableRef CVarAutomationCaptureLogEvents(
TEXT("Automation.CaptureLogEvents"),
bCaptureLogEvents,
TEXT("Consider warning/error log events during a test as impacting the test itself"));
static bool bSkipStackWalk = false;
static FAutoConsoleVariableRef CVarAutomationSkipStackWalk(
TEXT("Automation.SkipStackWalk"),
#Loc: <Workspace>/Engine/Source/Developer/AutomationController/Private/AutomationCommandline.cpp:693
Scope: file
Source code excerpt:
else if (FParse::Command(&TempCmd, TEXT("IgnoreLogEvents")))
{
if (IConsoleVariable* CVar = IConsoleManager::Get().FindConsoleVariable(TEXT("Automation.CaptureLogEvents")))
{
Ar.Logf(TEXT("Automation: Suppressing Log Events"));
CVar->Set(false);
}
}
else if (FParse::Command(&TempCmd, TEXT("EnableStereoTests")))