MCPcopy Create free account
hub / github.com/Tiiny-AI/PowerInfer / common_log_add

Function common_log_add

smallthinker/common/log.cpp:372–377  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

370}
371
372void common_log_add(struct common_log * log, enum ggml_log_level level, const char * fmt, ...) {
373 va_list args;
374 va_start(args, fmt);
375 log->add(level, fmt, args);
376 va_end(args);
377}
378
379void common_log_set_file(struct common_log * log, const char * file) {
380 log->set_file(file);

Callers 1

common_initFunction · 0.85

Calls 1

addMethod · 0.45

Tested by

no test coverage detected