| 20 | namespace error |
| 21 | { |
| 22 | static void abort(const char *format, va_list args) |
| 23 | { |
| 24 | char buf[1024]; |
| 25 | stbsp_vsnprintf(buf, sizeof(buf), format, args); |
| 26 | loge(ERROR, buf); |
| 27 | loge(ERROR, "Stacktrace:"); |
| 28 | debug::callstack(ERROR, LogSeverity::LOG_ERROR); |
| 29 | debug::breakpoint(); |
| 30 | } |
| 31 | |
| 32 | void abort(const char *format, ...) |
| 33 | { |
no test coverage detected