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

Function sqlite3DebugPrintf

util/logmsg.c:258–273  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

256}
257
258void sqlite3DebugPrintf(const char *zFormat, ...)
259{
260 va_list args;
261
262#ifdef NOINTERLEAVE
263 pthread_mutex_lock(&lk);
264#endif
265
266 va_start(args, zFormat);
267 logmsgv(LOGMSG_USER, zFormat, args);
268 va_end(args);
269
270#ifdef NOINTERLEAVE
271 pthread_mutex_unlock(&lk);
272#endif
273}
274
275int logmsg_process_message(char *line, int llen) {
276 char *tok;

Callers

nothing calls this directly

Calls 1

logmsgvFunction · 0.85

Tested by

no test coverage detected