| 95 | } |
| 96 | |
| 97 | int SyslogHelper::FacilityToNumber(const String& facility) |
| 98 | { |
| 99 | auto it = m_FacilityMap.find(facility); |
| 100 | if (it != m_FacilityMap.end()) |
| 101 | return it->second; |
| 102 | else |
| 103 | return Convert::ToLong(facility); |
| 104 | } |
| 105 | |
| 106 | void SyslogLogger::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr&) |
| 107 | { |