| 47 | } |
| 48 | |
| 49 | void _logAssert(UString prefix, UString string, int line, UString file) |
| 50 | { |
| 51 | Log(LogLevel::Error, prefix, format("%s:%d Assertion failed %s", file, line, string)); |
| 52 | debug_trap(); |
| 53 | exit(1); |
| 54 | } |
| 55 | |
| 56 | void setLogCallback(LogFunction function) |
| 57 | { |
nothing calls this directly
no test coverage detected