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/global.c | |
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/global.c')
-rw-r--r-- | src/global.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/global.c b/src/global.c index bdfd1ff29..673a274cc 100644 --- a/src/global.c +++ b/src/global.c @@ -164,6 +164,8 @@ SQLITE_WSD struct Sqlite3Config sqlite3Config = { 0, /* isPCacheInit */ 0, /* pInitMutex */ 0, /* nRefInitMutex */ + 0, /* xLog */ + 0, /* pLogArg */ }; |