Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Misc > API/Runtime/Core/Misc/FRuntimeErrors
References
Module | Core |
Header | /Engine/Source/Runtime/Core/Public/Misc/RuntimeErrors.h |
Include | #include "Misc/RuntimeErrors.h" |
Source | /Engine/Source/Runtime/Core/Private/Misc/RuntimeErrors.cpp |
static void LogRuntimeIssue
&40;
ELogVerbosity::Type Verbosity,
const ANSICHAR &42; FileName,
int32 LineNumber,
const FText & Message
&41;
Remarks
Prints out a runtime warning or error (typically by 'throwing' a BP script exception with the BP callstack) false in all cases.
Parameters
Name | Description |
---|---|
Verbosity | The verbosity of the issue (should be Warning or Error) |
File | File name ANSI string (FILE) |
Line | Line number (LINE) |
Message | Error or warning message to display, this may be surfaced to the user in the editor so make sure it is actionable (e.g., includes asset name or other useful info to help address the problem) |