It is possible that the trace store server binary legitimately doesn't exist. While it is still useful to inform the user that the store couldn't be started, it has be downgraded to a normal log message instead of a warning.

#jira UE-120128
#rnx

[CL 17067220 by Martin Ridgers in ue5-main branch]
This commit is contained in:
Martin Ridgers
2021-08-05 08:59:23 -04:00
parent b12a2efa1b
commit efee157e02

View File

@@ -518,7 +518,7 @@ static void LaunchUnrealTraceInternal()
if (!bOk)
{
UE_LOG(LogCore, Warning, TEXT("UnrealTraceServer: Unable to launch the trace store from '%s' (%08x)"), *BinPath, GetLastError());
UE_LOG(LogCore, Display, TEXT("UnrealTraceServer: Unable to launch the trace store from '%s' (%08x)"), *BinPath, GetLastError());
return;
}