From fec1d1fdd4c544ccb965263ea64e6b294ae421bf Mon Sep 17 00:00:00 2001 From: GriffinR Date: Sun, 21 Jan 2024 12:09:23 -0500 Subject: [PATCH] Remove debug log --- src/ui/updatepromoter.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ui/updatepromoter.cpp b/src/ui/updatepromoter.cpp index c7dc9de7..5d91d271 100644 --- a/src/ui/updatepromoter.cpp +++ b/src/ui/updatepromoter.cpp @@ -90,7 +90,6 @@ void UpdatePromoter::processWebpage(const QJsonDocument &data) { // We've found a valid release tag. If the version number is not newer than the host version then we can stop looking at releases. foundRelease = true; - logInfo(QString("Found release %1.%2.%3").arg(major).arg(minor).arg(patch)); // TODO: Remove if (major <= PORYMAP_VERSION_MAJOR && minor <= PORYMAP_VERSION_MINOR && patch <= PORYMAP_VERSION_PATCH) break;