diff --git a/src/datamanager.cpp b/src/datamanager.cpp index f01ee7b4..7eef347d 100644 --- a/src/datamanager.cpp +++ b/src/datamanager.cpp @@ -21,7 +21,7 @@ DataManager::DataManager() { // connect signals to lambda slots connect(&Fetcher::instance(), &Fetcher::feedDetailsUpdated, this, [this](const QString &url, const QString &name, const QString &image, const QString &link, const QString &description, const QDateTime &lastUpdated) { - qDebug() << "Start updating feed details" << m_feeds; + //qDebug() << "Start updating feed details" << m_feeds; Feed* feed = getFeed(url); if (feed != nullptr) { feed->setName(name); diff --git a/src/fetcher.cpp b/src/fetcher.cpp index edd55767..9f0856b9 100644 --- a/src/fetcher.cpp +++ b/src/fetcher.cpp @@ -118,7 +118,7 @@ void Fetcher::processFeed(Syndication::FeedPtr feed, const QString &url) } } else { authorname = otherItems.value(QStringLiteral("http://www.itunes.com/dtds/podcast-1.0.dtdauthor")).text(); - qDebug() << "authorname" << authorname; + //qDebug() << "authorname" << authorname; } if (!authorname.isEmpty()) processAuthor(url, QLatin1String(""), authorname, QLatin1String(""), authoremail); } @@ -171,7 +171,7 @@ void Fetcher::processFeed(Syndication::FeedPtr feed, const QString &url) bool Fetcher::processEntry(Syndication::ItemPtr entry, const QString &url, const bool &isNewFeed) { - qDebug() << "Processing" << entry->title(); + //qDebug() << "Processing" << entry->title(); // Retrieve "other" fields; this will include the "itunes" tags QMultiMap otherItems = entry->additionalProperties();