| 9 | namespace pwr::log |
| 10 | { |
| 11 | inline std::string MakeErrorLocationString(int line, const char* file, const char* function) |
| 12 | { |
| 13 | return std::format("{} at {}:{}", function, file, line); |
| 14 | } |
| 15 | |
| 16 | inline std::string MakeTelemetryDebugErrorString(const char* msg, int line, const char* file, const char* function) |
| 17 | { |
no outgoing calls
no test coverage detected