Remove debug logging in ConnectionMonitor

This commit is contained in:
Ryan Huffman 2016-08-04 14:40:41 -07:00
parent 8044910bf2
commit a37bcdafda

View file

@ -42,17 +42,13 @@ void ConnectionMonitor::init() {
}
void ConnectionMonitor::disconnectedFromDomain() {
qDebug() << "CM: DISCONNECTED FROM DOMAIN!";
_timer.start();
}
void ConnectionMonitor::connectedToDomain(const QString& name) {
qDebug() << "CM: CONNECTED FROM DOMAIN! - " << name;
_timer.stop();
}
void ConnectionMonitor::hostChanged(const QString& name) {
qDebug() << "CM: host changed: " << name;
_timer.start();
}