aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2010-02-18 18:45:09 +0000
committerdrh <drh@noemail.net>2010-02-18 18:45:09 +0000
commit3f280701095c788a830a80927cc0af9ae9cfd036 (patch)
tree9aa692e812c44c2b080c825644807352b9afdffa /src/sqliteInt.h
parentda730f6eb4e1df1b844b8c0cb0b68f3389a37960 (diff)
downloadsqlite-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.h2
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() */
};
/*