Navigation
API > API/Plugins > API/Plugins/DrawDebugLibrary
Blueprint accessible version of log verbosity for the Visual Logger Drawer
| Name | EDrawDebugLogVerbosity |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/DrawDebugLibrary/Source/DrawDebugLibrary/Public/DrawDebugLibrary.h |
| Include Path | #include "DrawDebugLibrary.h" |
Syntax
enum EDrawDebugLogVerbosity
{
Fatal,
Error,
Warning,
Display,
Log,
Verbose,
VeryVerbose,
}
Values
| Name | Remarks |
|---|---|
| Fatal | Always prints a fatal error to console (and log file) and crashes (even if logging is disabled) |
| Error | Prints an error to console (and log file). |
| Warning | Prints a warning to console (and log file). |
| Display | Prints a message to console (and log file) |
| Log | Prints a message to a log file (does not print to console) |
| Verbose | Prints a verbose message to a log file (if Verbose logging is enabled for the given category, usually used for detailed logging) |
| VeryVerbose | Prints a verbose message to a log file (if VeryVerbose logging is enabled, usually used for detailed logging that would otherwise spam output) |