mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
Remove debug output
This commit is contained in:
parent
0ee18b0aea
commit
243892f5d3
@ -797,9 +797,6 @@ Folder DBHelper::updateChildrenInfo(qulonglong folderId, QSqlDatabase &db)
|
|||||||
|
|
||||||
void DBHelper::updateChildrenInfo(QSqlDatabase &db)
|
void DBHelper::updateChildrenInfo(QSqlDatabase &db)
|
||||||
{
|
{
|
||||||
QElapsedTimer timer;
|
|
||||||
timer.start();
|
|
||||||
|
|
||||||
QSqlQuery selectQuery(db); // TODO check
|
QSqlQuery selectQuery(db); // TODO check
|
||||||
selectQuery.prepare("SELECT id FROM folder f WHERE f.parentId = 1");
|
selectQuery.prepare("SELECT id FROM folder f WHERE f.parentId = 1");
|
||||||
selectQuery.exec();
|
selectQuery.exec();
|
||||||
@ -807,8 +804,6 @@ void DBHelper::updateChildrenInfo(QSqlDatabase &db)
|
|||||||
while (selectQuery.next()) {
|
while (selectQuery.next()) {
|
||||||
DBHelper::updateChildrenInfo(selectQuery.value(0).toULongLong(), db);
|
DBHelper::updateChildrenInfo(selectQuery.value(0).toULongLong(), db);
|
||||||
}
|
}
|
||||||
|
|
||||||
qDebug() << timer.elapsed();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void DBHelper::updateProgress(qulonglong libraryId, const ComicInfo &comicInfo)
|
void DBHelper::updateProgress(qulonglong libraryId, const ComicInfo &comicInfo)
|
||||||
|
Loading…
Reference in New Issue
Block a user