| 49 | } |
| 50 | |
| 51 | void PolledLogSource::StartThread() |
| 52 | { |
| 53 | if (m_microsecondInterval > m_microsecondInterval.zero()) |
| 54 | m_thread = std::make_unique<std::thread>(&PolledLogSource::Loop, this); |
| 55 | } |
| 56 | |
| 57 | long PolledLogSource::GetMicrosecondInterval() const |
| 58 | { |
nothing calls this directly
no outgoing calls
no test coverage detected