| 38 | } |
| 39 | |
| 40 | void LogFile::Add(const Message& msg) |
| 41 | { |
| 42 | auto props = m_processInfo.GetProcessProperties(msg.processId, WStr(msg.processName).str()); |
| 43 | m_messages.push_back(InternalMessage(msg.time, msg.systemTime, props.uid)); |
| 44 | m_storage.Add(msg.text); |
| 45 | } |
| 46 | |
| 47 | size_t LogFile::BeginIndex() const |
| 48 | { |
nothing calls this directly
no test coverage detected