Commit 2ad98715 authored by dogmaphobic's avatar dogmaphobic

Removing left over debug output.

parent 90e8f879
...@@ -90,7 +90,7 @@ UDPLink::UDPLink(UDPConfiguration* config) ...@@ -90,7 +90,7 @@ UDPLink::UDPLink(UDPConfiguration* config)
// http://blog.qt.digia.com/blog/2010/06/17/youre-doing-it-wrong/ // http://blog.qt.digia.com/blog/2010/06/17/youre-doing-it-wrong/
moveToThread(this); moveToThread(this);
qDebug() << "UDP Created " << _config->name(); //qDebug() << "UDP Created " << _config->name();
} }
UDPLink::~UDPLink() UDPLink::~UDPLink()
...@@ -425,7 +425,7 @@ void UDPConfiguration::addHost(const QString& host, int port) ...@@ -425,7 +425,7 @@ void UDPConfiguration::addHost(const QString& host, int port)
qWarning() << "UDP:" << "Could not resolve host:" << host << "port:" << port; qWarning() << "UDP:" << "Could not resolve host:" << host << "port:" << port;
} else { } else {
_hosts[ipAdd] = port; _hosts[ipAdd] = port;
qDebug() << "UDP:" << "Adding Host:" << ipAdd << ":" << port; //qDebug() << "UDP:" << "Adding Host:" << ipAdd << ":" << port;
} }
} }
} }
...@@ -440,7 +440,7 @@ void UDPConfiguration::removeHost(const QString& host) ...@@ -440,7 +440,7 @@ void UDPConfiguration::removeHost(const QString& host)
tHost = tHost.trimmed(); tHost = tHost.trimmed();
QMap<QString, int>::iterator i = _hosts.find(tHost); QMap<QString, int>::iterator i = _hosts.find(tHost);
if(i != _hosts.end()) { if(i != _hosts.end()) {
qDebug() << "UDP:" << "Removed host:" << host; //qDebug() << "UDP:" << "Removed host:" << host;
_hosts.erase(i); _hosts.erase(i);
} else { } else {
qWarning() << "UDP:" << "Could not remove unknown host:" << host; qWarning() << "UDP:" << "Could not remove unknown host:" << host;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment