From 243892f5d3774d834c5f6e67589bac401eafa29d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Thu, 1 Sep 2022 11:09:02 +0200 Subject: [PATCH] Remove debug output --- YACReaderLibrary/db_helper.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/YACReaderLibrary/db_helper.cpp b/YACReaderLibrary/db_helper.cpp index 0e434ce1..c5e99ada 100644 --- a/YACReaderLibrary/db_helper.cpp +++ b/YACReaderLibrary/db_helper.cpp @@ -797,9 +797,6 @@ Folder DBHelper::updateChildrenInfo(qulonglong folderId, QSqlDatabase &db) void DBHelper::updateChildrenInfo(QSqlDatabase &db) { - QElapsedTimer timer; - timer.start(); - QSqlQuery selectQuery(db); // TODO check selectQuery.prepare("SELECT id FROM folder f WHERE f.parentId = 1"); selectQuery.exec(); @@ -807,8 +804,6 @@ void DBHelper::updateChildrenInfo(QSqlDatabase &db) while (selectQuery.next()) { DBHelper::updateChildrenInfo(selectQuery.value(0).toULongLong(), db); } - - qDebug() << timer.elapsed(); } void DBHelper::updateProgress(qulonglong libraryId, const ComicInfo &comicInfo)