Only print SQLite debug messages when compiled for it.
This commit is contained in:
parent
f1ee1baebd
commit
fecde4d89d
@ -34,12 +34,16 @@
|
|||||||
sqlite3 *twc_sqlite_db = NULL;
|
sqlite3 *twc_sqlite_db = NULL;
|
||||||
struct t_twc_list *twc_sqlite_statements = NULL;
|
struct t_twc_list *twc_sqlite_statements = NULL;
|
||||||
|
|
||||||
|
#ifdef TWC_DEBUG
|
||||||
#define TWC_SQLITE_DEBUG_RC(rc, expected_rc) \
|
#define TWC_SQLITE_DEBUG_RC(rc, expected_rc) \
|
||||||
if (rc != expected_rc) \
|
if (rc != expected_rc) \
|
||||||
weechat_printf(NULL, \
|
weechat_printf(NULL, \
|
||||||
"%s%s: SQLite error in %s: error code %d", \
|
"%s%s: SQLite error in %s: error code %d", \
|
||||||
weechat_prefix("error"), weechat_plugin->name, \
|
weechat_prefix("error"), weechat_plugin->name, \
|
||||||
__func__, rc); \
|
__func__, rc);
|
||||||
|
#else
|
||||||
|
#define TWC_SQLITE_DEBUG_RC(rc, expected_rc) (void)rc;
|
||||||
|
#endif // TWC_DEBUG
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create or reset an SQLite statement.
|
* Create or reset an SQLite statement.
|
||||||
|
Loading…
Reference in New Issue
Block a user