Browse Source

qt: Demote ReportInvalidCertificate message to qDebug

Too spammy.
0.10
Wladimir J. van der Laan 10 years ago
parent
commit
488a616439
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 2
      src/qt/paymentserver.cpp

2
src/qt/paymentserver.cpp

@ -90,7 +90,7 @@ static QList<QString> savedPaymentRequests; @@ -90,7 +90,7 @@ static QList<QString> savedPaymentRequests;
static void ReportInvalidCertificate(const QSslCertificate& cert)
{
qWarning() << "ReportInvalidCertificate : Payment server found an invalid certificate: " << cert.subjectInfo(QSslCertificate::CommonName);
qDebug() << "ReportInvalidCertificate : Payment server found an invalid certificate: " << cert.subjectInfo(QSslCertificate::CommonName);
}
//

Loading…
Cancel
Save