| 24 | void logInfo(const std::string &message) noexcept { log(Severity::Info, message); } |
| 25 | |
| 26 | void logActiveException(const std::string &additionalInfo) noexcept |
| 27 | { |
| 28 | std::exception_ptr p = std::current_exception(); |
| 29 | } |
| 30 | |
| 31 | void log(Severity severity, const std::string &message) noexcept { platform::Hooks::get()->log(severity, message); } |
| 32 | } |
nothing calls this directly
no outgoing calls
no test coverage detected