** A callback for the sqlite3_log() interface. */
| 16593 | ** A callback for the sqlite3_log() interface. |
| 16594 | */ |
| 16595 | static void shellLog(void *pArg, int iErrCode, const char *zMsg){ |
| 16596 | ShellState *p = (ShellState*)pArg; |
| 16597 | if( p->pLog==0 ) return; |
| 16598 | utf8_printf(p->pLog, "(%d) %s\n", iErrCode, zMsg); |
| 16599 | fflush(p->pLog); |
| 16600 | } |
| 16601 | |
| 16602 | /* |
| 16603 | ** SQL function: shell_putsnl(X) |
nothing calls this directly
no test coverage detected