1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 09:32:12 +01:00

MsgHandler: Ignore message about starting inspector server

This commit is contained in:
David Rosca 2015-08-30 14:54:43 +02:00
parent 32ea932654
commit 44de2b48a0

View File

@ -105,6 +105,8 @@ void msgHandler(QtMsgType type, const QMessageLogContext &context, const QString
{
if (msg.startsWith(QL1S("QSslSocket: cannot resolve SSLv2_")))
return;
if (msg.startsWith(QL1S("Remote debugging server started successfully.")))
return;
const QByteArray localMsg = msg.toLocal8Bit();