Skip to content

Commit

Permalink
fix debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Dec 8, 2015
1 parent 366c487 commit b0f089e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -22,7 +22,7 @@
#include "common/Log.h"

static void SymSqliteSqlTemplate_prepare(SymSqliteSqlTemplate *this, char *sql, SymStringArray *args, SymList *sqlTypes, int *error, sqlite3_stmt **stmt) {
SymLog_info("Preparing %s", sql);
SymLog_debug("Preparing %s", sql);
int rc = sqlite3_prepare_v2(this->db, sql, -1, stmt, NULL);
if (rc != SQLITE_OK) {
SymLog_error("Failed to prepare query: %s", sql);
Expand Down

0 comments on commit b0f089e

Please sign in to comment.