** A callback for the sqlite3_log() interface. */
| 11408 | ** A callback for the sqlite3_log() interface. |
| 11409 | */ |
| 11410 | static 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) |
nothing calls this directly
no test coverage detected