Skip to content

Commit

Permalink
qt: Demote ReportInvalidCertificate message to qDebug
Browse files Browse the repository at this point in the history
Too spammy.
  • Loading branch information
laanwj committed Aug 4, 2014
1 parent 1913302 commit 488a616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/paymentserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

//
Expand Down

0 comments on commit 488a616

Please sign in to comment.