From c3ce7ba8b27f5e855be2a10bc22504a36c481798 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Fri, 17 Jan 2020 23:14:30 +0100 Subject: [PATCH] Temporary produce more debug prints --- libnymea-app-core/connection/nymeaconnection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libnymea-app-core/connection/nymeaconnection.cpp b/libnymea-app-core/connection/nymeaconnection.cpp index 38203760..4de51fe2 100644 --- a/libnymea-app-core/connection/nymeaconnection.cpp +++ b/libnymea-app-core/connection/nymeaconnection.cpp @@ -391,9 +391,9 @@ void NymeaConnection::updateActiveBearers() { NymeaConnection::BearerTypes availableBearerTypes; QList configs = m_networkConfigManager->allConfigurations(QNetworkConfiguration::Active); -// qDebug() << "Network configuations:" << configs.count(); + qDebug() << "Network configuations:" << configs.count(); foreach (const QNetworkConfiguration &config, configs) { -// qDebug() << "Active network config:" << config.name() << config.bearerTypeFamily() << config.bearerTypeName(); + qDebug() << "Active network config:" << config.name() << config.bearerTypeFamily() << config.bearerTypeName(); // NOTE: iOS doesn't correctly report bearer types. It'll be Unknown all the time. Let's hardcode it to WiFi for that... #if defined(Q_OS_IOS)