Remove debug log

This commit is contained in:
GriffinR 2024-01-21 12:09:23 -05:00
parent c04a89396c
commit fec1d1fdd4

View file

@ -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. // 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; 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) if (major <= PORYMAP_VERSION_MAJOR && minor <= PORYMAP_VERSION_MINOR && patch <= PORYMAP_VERSION_PATCH)
break; break;