16 static void Log(FString output,
float TimeToDisplay = 5.0f, FColor Color = FColor::Silver, int32 Key = -1,
bool IncludeInLogs =
false);
17 static void Log(FString output, FColor Color);
18 static void Log(FString output,
bool IncludeInLogs);
19 static void LogServerDedicated(FString output,
const UObject* WorldContextObject,
float TimeToDisplay = 5.0f, FColor Color = FColor::Silver, int32 Key = -1);
20 static void LogServerListen(FString output,
const UObject* WorldContextObject,
float TimeToDisplay = 5.0f, FColor Color = FColor::Silver, int32 Key = -1);
21 static void LogServerAny(FString output,
const UObject* WorldContextObject,
float TimeToDisplay = 5.0f, FColor Color = FColor::Silver, int32 Key = -1);
22 static void LogClientNonServer(FString output,
const UObject* WorldContextObject,
float TimeToDisplay = 5.0f, FColor Color = FColor::Silver, int32 Key = -1);
23 static void LogClientAny(FString output,
const UObject* WorldContextObject,
float TimeToDisplay = 5.0f, FColor Color = FColor::Silver, int32 Key = -1);
27 static void Print(FString output,
const UObject* WorldContextObject,
float TimeToDisplay = 5.0f, FColor Color = FColor::Cyan, int32 Key = -1,
bool IncludeInLogs =
false);
28 static void Print(FString output,
const UObject* WorldContextObject,
bool IncludeInLogs);
29 static void Print(
const UObject* WorldContextObject, FString output,
bool IncludeInLogs);
34#define ProjectXEnsure(InExpression) (!!(InExpression))
35#define ProjectXEnsureMsgf(InExpression, InFormat, ... ) (!!(InExpression))
39#define ProjectXEnsure(InExpression) { if(UNLIKELY(!(InExpression))) { FDebug::LogAssertFailedMessage( #InExpression, __FILE__, __LINE__ ); if (UE4Asserts_Private::TrueOnFirstCallOnly([]{})) { _DebugBreakAndPromptForRemote(); } } }
40#define ProjectXEnsureMsgf(InExpression, InFormat, ... ) { if(UNLIKELY(!(InExpression))) { FDebug::LogAssertFailedMessage( #InExpression, __FILE__, __LINE__, InFormat, ##__VA_ARGS__ ); if (UE4Asserts_Private::TrueOnFirstCallOnly([]{})) { _DebugBreakAndPromptForRemote(); } } }
ELogLevel
Definition: Debug.h:7