From 5d7e6fe66c43845134ad82051873c8a5dae76099 Mon Sep 17 00:00:00 2001 From: "Srivats P." Date: Wed, 31 Dec 2014 21:41:12 +0530 Subject: [PATCH] Removed debug print of drone settings filename - QSettings::fileName() is the file where the settings will be written to, not the file from which settings were read (when fallbacks are enabled) and hence not useful for us. --- server/drone_main.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/drone_main.cpp b/server/drone_main.cpp index 01bfea6..e5c1abd 100644 --- a/server/drone_main.cpp +++ b/server/drone_main.cpp @@ -72,9 +72,6 @@ int main(int argc, char *argv[]) app.organizationName(), app.applicationName().toLower()); - if (QFile::exists(appSettings->fileName())) - qDebug("Read settings from %s", qPrintable(appSettings->fileName())); - drone = new Drone(); OstProtocolManager = new ProtocolManager();