Suppress all messages that contain string "Error receiving trust for a CA
certificate". ref #568. --HG-- branch : develop
This commit is contained in:
parent
5fe41e8a99
commit
d8874c844f
|
@ -110,7 +110,7 @@ inline void noisyFailureMsgHandler(QtMsgType type, const QMessageLogContext &con
|
||||||
}
|
}
|
||||||
|
|
||||||
// See issue #568
|
// 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;
|
type = QtDebugMsg;
|
||||||
}
|
}
|
||||||
|
|
|
@ -105,7 +105,7 @@ inline void noisyFailureMsgHandler(QtMsgType type, const QMessageLogContext &con
|
||||||
}
|
}
|
||||||
|
|
||||||
// See issue #568
|
// 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;
|
type = QtDebugMsg;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user