| 656 | */ |
| 657 | #ifdef SQLITE_ENABLE_IOTRACE |
| 658 | static void SQLITE_CDECL iotracePrintf(const char *zFormat, ...){ |
| 659 | va_list ap; |
| 660 | char *z; |
| 661 | if( iotrace==0 ) return; |
| 662 | va_start(ap, zFormat); |
| 663 | z = sqlite3_vmprintf(zFormat, ap); |
| 664 | va_end(ap); |
| 665 | utf8_printf(iotrace, "%s", z); |
| 666 | sqlite3_free(z); |
| 667 | } |
| 668 | #endif |
| 669 | |
| 670 | /* |
nothing calls this directly
no test coverage detected