From 88937a0390671bc84a6b53df4c967e202fb4b213 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 4 Mar 2018 15:25:51 +0100 Subject: [PATCH] Update debug messages --- zathura/database-sqlite.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zathura/database-sqlite.c b/zathura/database-sqlite.c index cc44337..3257835 100644 --- a/zathura/database-sqlite.c +++ b/zathura/database-sqlite.c @@ -350,7 +350,7 @@ check_column(sqlite3* session, const char* table, const char* col, bool* res) } if (*res == false) { - girara_debug("column %s in table %s is NOT found", col, table); + girara_debug("Column '%s' in table '%s' NOT found.", col, table); } sqlite3_finalize(stmt); @@ -386,7 +386,7 @@ check_column_type(sqlite3* session, const char* table, const char* col, const ch } if (*res == false) { - girara_debug("column %s in table %s has wrong type", col, table); + girara_debug("Column '%s' in table '%s' has wrong type.", col, table); } sqlite3_finalize(stmt);