| 26 | } |
| 27 | |
| 28 | void Error::impl::Log(std::wstring_view msg, spdlog::level::level_enum level, std::source_location location) |
| 29 | { |
| 30 | spdlog::log({ location.file_name(), static_cast<int>(location.line()), location.function_name() }, level, msg); |
| 31 | } |
| 32 | |
| 33 | std::wstring Error::impl::GetLogMessage(std::wstring_view message, std::wstring_view error_message) |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected