From 6e824883963ce71447e33cf5b98912b243eab1ab Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 8 Feb 2011 17:04:05 +0100 Subject: [PATCH] debugger: improved error messages on startup --- src/plugins/debugger/debuggerplugin.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 2c90be2e9c1..58f5a60e3f4 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -1342,7 +1342,6 @@ bool DebuggerPluginPrivate::parseArgument(QStringList::const_iterator &it, int pos = remoteChannel.indexOf(QLatin1Char(':')); if (pos != -1) port = remoteChannel.mid(pos + 1).toUInt(); - qDebug() << "CMD: " << *it << " CHANNEL" << remoteChannel << "PORT: " << port; if (pid) { sp.startMode = AttachExternal; sp.attachPID = pid; @@ -1352,7 +1351,6 @@ bool DebuggerPluginPrivate::parseArgument(QStringList::const_iterator &it, sp.startMode = AttachToRemote; sp.remoteChannel = remoteChannel; sp.executable = it->section('@', 1, 1); - qDebug() << "SP" << sp.remoteChannel << sp.executable; if (sp.remoteChannel.isEmpty()) { *errorMessage = DebuggerPlugin::tr("The parameter '%1' of option " "'%2' does not match the pattern @@.")