unreal.DrawDebugLogVerbosity

class unreal.DrawDebugLogVerbosity

Bases: EnumBase

Blueprint accessible version of log verbosity for the Visual Logger Drawer

C++ Source:

  • Plugin: DrawDebugLibrary

  • Module: DrawDebugLibrary

  • File: DrawDebugLibrary.h

DISPLAY: DrawDebugLogVerbosity = Ellipsis

Prints a message to console (and log file)

Type:

3

ERROR: DrawDebugLogVerbosity = Ellipsis

Prints an error to console (and log file). Commandlets and the editor collect and report errors. Error messages result in commandlet failure.

Type:

1

FATAL: DrawDebugLogVerbosity = Ellipsis

Always prints a fatal error to console (and log file) and crashes (even if logging is disabled)

Type:

0

LOG: DrawDebugLogVerbosity = Ellipsis

Prints a message to a log file (does not print to console)

Type:

4

VERBOSE: DrawDebugLogVerbosity = Ellipsis

Prints a verbose message to a log file (if Verbose logging is enabled for the given category, usually used for detailed logging)

Type:

5

VERY_VERBOSE: DrawDebugLogVerbosity = Ellipsis

Prints a verbose message to a log file (if VeryVerbose logging is enabled, usually used for detailed logging that would otherwise spam output)

Type:

6

WARNING: DrawDebugLogVerbosity = Ellipsis

Prints a warning to console (and log file). Commandlets and the editor collect and report warnings. Warnings can be treated as an error.

Type:

2