diff --git a/launcher/net/ChecksumValidator.h b/launcher/net/ChecksumValidator.h index c0d5a56aa..c7906cc13 100644 --- a/launcher/net/ChecksumValidator.h +++ b/launcher/net/ChecksumValidator.h @@ -71,8 +71,7 @@ class ChecksumValidator : public Validator { auto validate(QNetworkReply& reply) -> bool override { if (!m_expected.isEmpty() && m_expected != hash()) { - qWarning() << "Checksum mismatch for URL:" << reply.url().toString() << "expected:" << m_expected << "got:" << hash() - << "algorithm:" << m_checksum.algorithm(); + qWarning() << "Checksum mismatch for URL:" << reply.url().toString() << "expected:" << m_expected << "got:" << hash(); return false; } return true;