Added log when adding feed to DB.

This commit is contained in:
martinrotter 2017-04-26 07:59:35 +02:00
parent 49f76775f4
commit ac3c57cd4d

View file

@ -1193,6 +1193,8 @@ int DatabaseQueries::addFeed(QSqlDatabase db, int parent_id, int account_id, con
int auto_update_interval, StandardFeed::Type feed_format, bool *ok) {
QSqlQuery q(db);
qDebug() << "Adding feed with title '" << title.toUtf8() << "' to DB.";
q.setForwardOnly(true);
q.prepare("INSERT INTO Feeds "
"(title, description, date_created, icon, category, encoding, url, protected, username, password, update_type, update_interval, type, account_id) "