Loading...
Searching...
No Matches
Go to the documentation of this file.
5#include "CoreMinimal.h"
16#define LOG_MISSING_POINTER(WorldContext, PointerName, ObjectName, bDebuggingMode, Category) \
17if (!bDebuggingMode) { return; } \
18const FString FullMessage = FString::Printf(TEXT("%s not set in %s"), ToCStr(PointerName), ToCStr(ObjectName)); \
19UBaseHelpersBPLib::PrintToLogWithCategory(WorldContext, Category, FullMessage, false, true);
29#define LOG_DEBUG_MESSAGE(WorldContext, Message, ObjectName, bDebuggingMode, Category) \
30if (!bDebuggingMode) { return; } \
31const FString FullMessage = FString::Printf(TEXT("%s - in %s"), *Message, *ObjectName); \
32UBaseHelpersBPLib::PrintToLogWithCategory(WorldContext, Category, FullMessage, true, true);