| 30 | { |
| 31 | |
| 32 | CLog::t_LogList CLog::GetLogEntries(unsigned int iSeverity) const |
| 33 | { |
| 34 | t_LogList OutLog; |
| 35 | for (const auto &log : m_LogList) |
| 36 | { |
| 37 | if (iSeverity == 0 || log.m_iSeverity == iSeverity) |
| 38 | { |
| 39 | OutLog.push_back(log); |
| 40 | } |
| 41 | } |
| 42 | return OutLog; |
| 43 | } |
| 44 | |
| 45 | |
| 46 | CLog::t_LogList CLog::GetLogEntries(unsigned int iHighSeverity, unsigned int iLowSeverity) const |
nothing calls this directly
no outgoing calls
no test coverage detected