diff options
author | drh <drh@noemail.net> | 2010-02-18 18:45:09 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2010-02-18 18:45:09 +0000 |
commit | 3f280701095c788a830a80927cc0af9ae9cfd036 (patch) | |
tree | 9aa692e812c44c2b080c825644807352b9afdffa /src/sqliteInt.h | |
parent | da730f6eb4e1df1b844b8c0cb0b68f3389a37960 (diff) | |
download | sqlite-3f280701095c788a830a80927cc0af9ae9cfd036.tar.gz sqlite-3f280701095c788a830a80927cc0af9ae9cfd036.zip |
Add a new, experimental logging interface designed to aid in debugging of
deeply embedded projects that use SQLite.
FossilOrigin-Name: 103321e37ae46eacfad4e127d13477ad5dd02bab
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index ff90e0307..a576dd682 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2370,6 +2370,8 @@ struct Sqlite3Config { int isPCacheInit; /* True after malloc is initialized */ sqlite3_mutex *pInitMutex; /* Mutex used by sqlite3_initialize() */ int nRefInitMutex; /* Number of users of pInitMutex */ + void (*xLog)(void*,int,const char*); /* Function for logging */ + void *pLogArg; /* First argument to xLog() */ }; /* |