Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/IMessageLog
Description
Notify the user if there are any messages on the current page for this log. If there are no messages present, this call does nothing.
| Name | NotifyIfAnyMessages |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Logging/IMessageLog.h |
| Include Path | #include "Logging/IMessageLog.h" |
void NotifyIfAnyMessages
(
const FText & Message,
EMessageSeverity::Type SeverityFilter,
bool bForce
)
Parameters
| Name | Remarks |
|---|---|
| Message | The message to display in the notification. |
| SeverityFilter | Notifications will only be displayed if there are messages present that are of equal or greater severity than this. |
| bForce | Notify anyway, even if the filters gives us no messages. |