MCPcopy Create free account
hub / github.com/bloomberg/comdb2 / logmsgvf

Function logmsgvf

util/logmsg.c:230–237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

228
229
230int logmsgvf(loglvl lvl, FILE *f, const char *fmt, va_list args) {
231 int ret;
232 if (f == stdout || f == stderr)
233 ret = logmsgv(lvl, fmt, args);
234 else
235 ret = vfprintf(f, fmt, args);
236 return ret;
237}
238
239int logmsgf(loglvl lvl, FILE *f, const char *fmt, ...) {
240 va_list args;

Callers 10

printf_wrapperFunction · 0.85
printFunction · 0.85
__db_errfileFunction · 0.85
logmsgfFunction · 0.85
ctracevFunction · 0.85
ctracefFunction · 0.85
vctraceFunction · 0.85
ctracenfFunction · 0.85
ctracentFunction · 0.85
vctracentFunction · 0.85

Calls 1

logmsgvFunction · 0.85

Tested by

no test coverage detected