Navigation
API > API/Plugins > API/Plugins/NetcodeUnitTest > API/Plugins/NetcodeUnitTest/FLogStackTraceManager
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void AddLogTrace
(
FString LogLine, |
Adds a log line for log trace tracking NOTE: The LogLine does NOT match the category or verbosity (e.g. LogNet or Warning/Verbose) of logs NOTE: Partial matches, will output to log when encountered, so matched logs can be identified | NUTUtilDebug.h | |
void AddLogTrace
(
FString LogLine, |
Adds a log line for log trace tracking NOTE: The LogLine does NOT match the category or verbosity (e.g. LogNet or Warning/Verbose) of logs NOTE: Partial matches, will output to log when encountered, so matched logs can be identified | NUTUtilDebug.h |
AddLogTrace(FString, ELogTraceFlags)
Description
Adds a log line for log trace tracking NOTE: The LogLine does NOT match the category or verbosity (e.g. LogNet or Warning/Verbose) of logs NOTE: Partial matches, will output to log when encountered, so matched logs can be identified
| Name | AddLogTrace |
| Type | function |
| Header File | /Engine/Plugins/NetcodeUnitTest/NetcodeUnitTest/Source/NetcodeUnitTest/Public/NUTUtilDebug.h |
| Include Path | #include "NUTUtilDebug.h" |
| Source | /Engine/Plugins/NetcodeUnitTest/NetcodeUnitTest/Source/NetcodeUnitTest/Private/NUTUtilDebug.cpp |
void AddLogTrace
(
FString LogLine,
ELogTraceFlags TraceFlags
)
Parameters
| Name | Remarks |
|---|---|
| LogLine | The line to be tracked |
| TraceFlags | Flags for the type of trace to perform |
AddLogTrace(FString, bool, bool)
Description
Adds a log line for log trace tracking NOTE: The LogLine does NOT match the category or verbosity (e.g. LogNet or Warning/Verbose) of logs NOTE: Partial matches, will output to log when encountered, so matched logs can be identified
| Name | AddLogTrace |
| Type | function |
| Header File | /Engine/Plugins/NetcodeUnitTest/NetcodeUnitTest/Source/NetcodeUnitTest/Public/NUTUtilDebug.h |
| Include Path | #include "NUTUtilDebug.h" |
void AddLogTrace
(
FString LogLine,
bool bPartial,
bool bDump
)
Parameters
| Name | Remarks |
|---|---|
| LogLine | The line to be tracked |
| bPartial | Whether or not to do partial matches for this line (case insensitive, and matches substrings) |
| bDump | Whether or not to dump traces as they are encountered |