| 98 | |
| 99 | |
| 100 | void BinaryNinja::Log(BNLogLevel level, const char* fmt, ...) |
| 101 | { |
| 102 | va_list args; |
| 103 | va_start(args, fmt); |
| 104 | PerformLog(0, level, "", 0, fmt, args); |
| 105 | va_end(args); |
| 106 | } |
| 107 | |
| 108 | |
| 109 | void BinaryNinja::LogTrace(const char* fmt, ...) |
nothing calls this directly
no test coverage detected