Remove qDebug message.

It shouldn't be necessary now. Helper exits reliably.
This commit is contained in:
Andrius Štikonas 2018-07-15 00:35:55 +01:00
parent f572681684
commit 9a8166fe65
1 changed files with 1 additions and 3 deletions

View File

@ -288,10 +288,8 @@ void ExternalCommandHelper::exit(const QByteArray& signature)
m_loop.exit();
if (QDBusConnection::systemBus().unregisterService(QStringLiteral("org.kde.kpmcore.helperinterface")))
qDebug() << "org.kde.kpmcore.helperinterface unregistered";
QDBusConnection::systemBus().unregisterObject(QStringLiteral("/Helper"));
QDBusConnection::systemBus().unregisterService(QStringLiteral("org.kde.kpmcore.helperinterface"));
}
void ExternalCommandHelper::onReadOutput()