Update debug messages

This commit is contained in:
Sebastian Ramacher 2018-03-04 15:25:51 +01:00
parent 7e9e700744
commit 88937a0390

View File

@ -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);