Suppress all messages that contain string "Error receiving trust for a CA

certificate". ref #568.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2016-09-20 21:33:33 +03:00
parent 5fe41e8a99
commit d8874c844f
2 changed files with 2 additions and 2 deletions

View file

@ -110,7 +110,7 @@ inline void noisyFailureMsgHandler(QtMsgType type, const QMessageLogContext &con
}
// See issue #568
if ((type == QtWarningMsg) && msg.contains(QStringLiteral("Error receiving trust for a CA certificate")))
if (msg.contains(QStringLiteral("Error receiving trust for a CA certificate")))
{
type = QtDebugMsg;
}

View file

@ -105,7 +105,7 @@ inline void noisyFailureMsgHandler(QtMsgType type, const QMessageLogContext &con
}
// See issue #568
if ((type == QtWarningMsg) && msg.contains(QStringLiteral("Error receiving trust for a CA certificate")))
if (msg.contains(QStringLiteral("Error receiving trust for a CA certificate")))
{
type = QtDebugMsg;
}