Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FMessageLog
Description
Helper functions to allow easy adding of messages to the log. Each one will add a token for the severity (if valid) and the textual message (if any). Messages are buffered.
| Name | Message |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Logging/MessageLog.h |
| Include Path | #include "Logging/MessageLog.h" |
| Source | /Engine/Source/Runtime/Core/Private/Logging/MessageLog.cpp |
TSharedRef < FTokenizedMessage > Message
(
EMessageSeverity::Type InSeverity,
const FText & InMessage
)
the message for chaining calls.
Parameters
| Name | Remarks |
|---|---|
| InSeverity | The severity of the message |
| InMessage | The message to use |