summaryrefslogtreecommitdiff
path: root/gatocentralmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gatocentralmanager.cpp')
-rw-r--r--gatocentralmanager.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/gatocentralmanager.cpp b/gatocentralmanager.cpp
index 3073d34..00dd531 100644
--- a/gatocentralmanager.cpp
+++ b/gatocentralmanager.cpp
@@ -90,8 +90,6 @@ void GatoCentralManager::scanForPeripheralsWithServices(const QList<GatoUUID> &u
return;
}
- qDebug() << "LE Scan in progress";
-
d->notifier = new QSocketNotifier(d->hci, QSocketNotifier::Read);
connect(d->notifier, SIGNAL(activated(int)), this, SLOT(_q_readNotify()));
@@ -117,7 +115,6 @@ void GatoCentralManager::stopScan()
{
Q_D(GatoCentralManager);
if (d->scanning()) {
- qDebug() << "Stopping LE scan";
delete d->notifier;
setsockopt(d->hci, SOL_HCI, HCI_FILTER, &d->hci_of, sizeof(d->hci_of));
hci_le_set_scan_enable(d->hci, 0, 0, d->timeout);