MCPcopy Create free account
hub / github.com/audacity/audacity / shellLog

Function shellLog

lib-src/sqlite/shell.c:11410–11415  ·  view source on GitHub ↗

** A callback for the sqlite3_log() interface. */

Source from the content-addressed store, hash-verified

11408** A callback for the sqlite3_log() interface.
11409*/
11410static void shellLog(void *pArg, int iErrCode, const char *zMsg){
11411 ShellState *p = (ShellState*)pArg;
11412 if( p->pLog==0 ) return;
11413 utf8_printf(p->pLog, "(%d) %s\n", iErrCode, zMsg);
11414 fflush(p->pLog);
11415}
11416
11417/*
11418** SQL function: shell_putsnl(X)

Callers

nothing calls this directly

Calls 1

utf8_printfFunction · 0.85

Tested by

no test coverage detected