| 118 | |
| 119 | |
| 120 | void BinaryNinja::LogDebug(const char* fmt, ...) |
| 121 | { |
| 122 | va_list args; |
| 123 | va_start(args, fmt); |
| 124 | PerformLog(0, DebugLog, "", 0, fmt, args); |
| 125 | va_end(args); |
| 126 | } |
| 127 | |
| 128 | |
| 129 | void BinaryNinja::LogInfo(const char* fmt, ...) |
no test coverage detected