diff options
author | David Sommerseth <dazo@users.sourceforge.net> | 2008-10-04 00:11:39 +0200 |
---|---|---|
committer | David Sommerseth <dazo@users.sourceforge.net> | 2008-10-04 00:11:39 +0200 |
commit | da003cfcee25fc4fb98a061893b44f0eb0f43a7c (patch) | |
tree | acc67984a64b712dfab4123aaf882ed6d2654353 /database/sqlite/sqlite.c | |
parent | 1a3a4b3b242e1a045a5f08c91edd074865a85cee (diff) | |
download | eurephia-da003cfcee25fc4fb98a061893b44f0eb0f43a7c.tar.gz eurephia-da003cfcee25fc4fb98a061893b44f0eb0f43a7c.tar.xz eurephia-da003cfcee25fc4fb98a061893b44f0eb0f43a7c.zip |
Log review - changed log levels for all DEBUG(...) calls
Diffstat (limited to 'database/sqlite/sqlite.c')
-rw-r--r-- | database/sqlite/sqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/database/sqlite/sqlite.c b/database/sqlite/sqlite.c index 1a97793..85b41de 100644 --- a/database/sqlite/sqlite.c +++ b/database/sqlite/sqlite.c @@ -218,7 +218,7 @@ dbresult *sqlite_query(eurephiaCTX *ctx, char *fmt, ... ) { sql = sqlite3_vmprintf(fmt, ap); va_end(ap); - DEBUG(ctx, 11, "Doing SQL Query: %s", sql); + DEBUG(ctx, 25, "Doing SQL Query: %s", sql); rc = sqlite3_exec( (sqlite3 *) dbc->dbhandle, sql, _cb_parse_result, 0, &errMsg ); if( rc != SQLITE_OK ) { eurephia_log(ctx, LOG_ERROR, 0, "SQL Error: %s", errMsg); |