From eed14e9c14ca204ca846a5b8f5be4dd42e16e0da Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Thu, 8 Apr 2021 12:37:12 +0200 Subject: [PATCH] Remove debug output in MatrixImageProvider Cancelled requests are normal when scrolling through the timeline. This makes the error messages useless and spam the console a lot. --- src/matriximageprovider.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matriximageprovider.cpp b/src/matriximageprovider.cpp index e6b984dd0..33b351a55 100644 --- a/src/matriximageprovider.cpp +++ b/src/matriximageprovider.cpp @@ -89,7 +89,7 @@ void ThumbnailResponse::prepareResult() errorStr.clear(); } else if (job->error() == BaseJob::Abandoned) { errorStr = i18n("Image request has been cancelled"); - qDebug() << "ThumbnailResponse: cancelled for" << mediaId; + //qDebug() << "ThumbnailResponse: cancelled for" << mediaId; } else { errorStr = job->errorString(); qWarning() << "ThumbnailResponse: no valid image for" << mediaId << "-" << errorStr;