MCPcopy Create free account
hub / github.com/antirez/llama.cpp-deepseek-v4-flash / common_log_add

Function common_log_add

common/log.cpp:393–398  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

391}
392
393void 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
400void common_log_set_file(struct common_log * log, const char * file) {
401 log->set_file(file);

Callers 1

Calls 1

addMethod · 0.45

Tested by

no test coverage detected