Navigation
API > API/Developer > API/Developer/TraceServices > API/Developer/TraceServices/ILogProvider
Description
Enumerates messages with timestamp in the specified time interval [StartTime, EndTime].
The current number of messages could be different than the value returned by the last call to GetMessageCount().
| Name | EnumerateMessages |
| Type | function |
| Header File | /Engine/Source/Developer/TraceServices/Public/TraceServices/Model/Log.h |
| Include Path | #include "TraceServices/Model/Log.h" |
void EnumerateMessages
(
double StartTime,
double EndTime,
TFunctionRef < void &)> Callback
) const
Parameters
| Name | Remarks |
|---|---|
| StartTime | The inclusive start time of the interval. |
| EndTime | The inclusive end time of the interval. |
| Callback | The function to be called for each log message with the message's information. |