TransmissionChecksumValidator: Reduce verbosity.

This commit is contained in:
Klaas Freitag 2015-05-21 14:31:39 +02:00
parent b05ca526a4
commit 3870915118

View file

@ -145,7 +145,7 @@ void TransmissionChecksumValidator::slotDownloadChecksumCalculated()
if( hash != _expectedHash ) {
emit validationFailed(tr("The downloaded file does not match the checksum, it will be resumed."));
} else {
qDebug() << "Checksum checked and matching: " << _expectedHash;
// qDebug() << "Checksum checked and matching: " << _expectedHash;
emit validated();
}
}