| 391 | } |
| 392 | |
| 393 | void common_log_add(struct common_log * log, enum ggml_log_level level, const char * fmt, ...) { |
| 394 | va_list args; |
| 395 | va_start(args, fmt); |
| 396 | log->add(level, fmt, args); |
| 397 | va_end(args); |
| 398 | } |
| 399 | |
| 400 | void common_log_set_file(struct common_log * log, const char * file) { |
| 401 | log->set_file(file); |
no test coverage detected