| 154 | |
| 155 | |
| 156 | void BinaryNinja::LogAlert(const char* fmt, ...) |
| 157 | { |
| 158 | va_list args; |
| 159 | va_start(args, fmt); |
| 160 | PerformLog(0, AlertLog, "", 0, fmt, args); |
| 161 | va_end(args); |
| 162 | } |
| 163 | |
| 164 | |
| 165 | void BinaryNinja::LogFV(BNLogLevel level, fmt::string_view format, fmt::format_args args) |
no test coverage detected