diff options
| author | Hennadii Stepanov <[email protected]> | 2019-06-21 20:22:13 +0300 |
|---|---|---|
| committer | Hennadii Stepanov <[email protected]> | 2019-06-21 20:22:13 +0300 |
| commit | a2aabfb749198bce896c9e597082acd67d3b863e (patch) | |
| tree | f615c6d442e0e7e30a8f66ba043760c0882c8882 /src/qt/paymentserver.cpp | |
| parent | Merge #16256: doc: remove orphaned header in developer notes (diff) | |
| download | discoin-a2aabfb749198bce896c9e597082acd67d3b863e.tar.xz discoin-a2aabfb749198bce896c9e597082acd67d3b863e.zip | |
Use qInfo() if no error occurs
qWarning() is used to report warnings and recoverable errors in your
application.
qInfo() is used for informational messages (since Qt 5.5).
Diffstat (limited to 'src/qt/paymentserver.cpp')
| -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 43dccec4e..c99515fe1 100644 --- a/src/qt/paymentserver.cpp +++ b/src/qt/paymentserver.cpp @@ -488,7 +488,7 @@ void PaymentServer::LoadRootCAs(X509_STORE* _store) continue; } } - qWarning() << "PaymentServer::LoadRootCAs: Loaded " << nRootCerts << " root certificates"; + qInfo() << "PaymentServer::LoadRootCAs: Loaded " << nRootCerts << " root certificates"; // Project for another day: // Fetch certificate revocation lists, and add them to certStore. |