| 85 | } |
| 86 | |
| 87 | void |
| 88 | CMLogger::Log(logservice::SeverityLevel level, std::string const& message) |
| 89 | { |
| 90 | auto currLogger = std::atomic_load(&logService); |
| 91 | if (currLogger) |
| 92 | { |
| 93 | currLogger->Log(level, message); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | void |
| 98 | CMLogger::Log(logservice::SeverityLevel level, std::string const& message, const std::exception_ptr ex) |
no outgoing calls
no test coverage detected