Navigation
API > API/Plugins > API/Plugins/NetcodeUnitTest
General debug functions
| Name | NUTDebug |
| Type | struct |
| Header File | /Engine/Plugins/NetcodeUnitTest/NetcodeUnitTest/Source/NetcodeUnitTest/Public/NUTUtilDebug.h |
| Include Path | #include "NUTUtilDebug.h" |
Syntax
struct NUTDebug
Functions
Static
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Takes an array of bytes, and generates a bit-based/binary dump string out of them, optionally including byte offsets also (intended for debugging in the log window) | NUTUtilDebug.h | ||
| Version of the above bit-dump function, which takes a string as input | NUTUtilDebug.h | ||
| Version of the above bit-dump function, which takes a byte pointer and length as input | NUTUtilDebug.h | ||
| Takes an array of bytes, and generates a hex dump string out of them, optionally including an ASCII dump and dumping byte offsets also (intended for debugging in the log window) | NUTUtilDebug.h | ||
| Version of the above hex-dump function, which takes a string as input | NUTUtilDebug.h | ||
| Version of the above hex-dump function, which takes a byte pointer and length as input | NUTUtilDebug.h | ||
static void LogBitDump
(
const TArray< uint8 >& InBytes, |
Version of the above bit-dump function, which dumps in a format more friendly/readable in log text files | NUTUtilDebug.h | |
static void LogBitDump
(
const FString& InString, |
Version of the above, which takes a string as input | NUTUtilDebug.h | |
static void LogBitDump
(
const uint8* InBytes, |
Version of the above bit-dump logging function, which takes a byte pointer and length as input | NUTUtilDebug.h | |
static void LogHexDump
(
const TArray< uint8 >& InBytes, |
Version of the above hex-dump function, which dumps in a format more friendly/readable in log text files | NUTUtilDebug.h | |
static void LogHexDump
(
const FString& InString, |
Version of the above, which takes a string as input | NUTUtilDebug.h | |
static void LogHexDump
(
const uint8* InBytes, |
Version of the above hex-dump logging function, which takes a byte pointer and length as input | NUTUtilDebug.h | |
| Quick conversion of a string to a hex-dumpable byte array | NUTUtilDebug.h |