diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-08-04 16:41:42 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-08-04 16:41:42 +0200 |
| commit | 488a61643908e8e872326a79e1143d1f377d412b (patch) | |
| tree | 5a0257357cc9f76dd278df9debb1442f87a418b2 | |
| parent | Merge pull request #4285 (diff) | |
| download | discoin-488a61643908e8e872326a79e1143d1f377d412b.tar.xz discoin-488a61643908e8e872326a79e1143d1f377d412b.zip | |
qt: Demote ReportInvalidCertificate message to qDebug
Too spammy.
| -rw-r--r-- | src/qt/paymentserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp index 76fd2733a..a9f1566d6 100644 --- a/src/qt/paymentserver.cpp +++ b/src/qt/paymentserver.cpp @@ -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); } // |