QmlJSDebugger: Remove confusing status messages

Clean up status messages logged in the debugger log.
This commit is contained in:
Kai Koehne
2010-12-16 16:31:10 +01:00
parent 7771518d59
commit d6bc3a2822
2 changed files with 0 additions and 6 deletions

View File

@@ -191,7 +191,6 @@ void QmlAdapter::connectionStateChanged()
if (!d->m_mainClient) {
d->m_mainClient = new QDeclarativeEngineDebug(d->m_conn, this);
logServiceStatusChange(QLatin1String("QmlObserver"), static_cast<QDeclarativeDebugClient::Status>(d->m_mainClient->status()));
}
createDebuggerClient();
@@ -219,8 +218,6 @@ void QmlAdapter::createDebuggerClient()
connect(d->m_qmlClient, SIGNAL(messageWasReceived(QByteArray)),
d->m_engine.data(), SLOT(messageReceived(QByteArray)));
logServiceStatusChange(d->m_qmlClient->name(), d->m_qmlClient->status());
//engine->startSuccessful(); // FIXME: AAA: port to new debugger states
}