diff options
| author | Tannin <devnull@localhost> | 2015-06-04 12:50:11 +0200 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2015-06-04 12:50:11 +0200 |
| commit | 859332e18d58cf8873852e29ba726be9b5efa0f2 (patch) | |
| tree | c8db2752044e67e78e1e58712d7fea9a6dccb47e | |
| parent | 1fd8f44960d57937c1d66c6c5c2d0cdd7d232e4b (diff) | |
a little more logging during startup
| -rw-r--r-- | src/main.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index ac0582bf..549de4a9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -170,6 +170,8 @@ void cleanupDir() "proxy.dll"
};
+ qDebug("removing obsolete files");
+
for (const QString &fileName : fileNames) {
QString fullPath = qApp->applicationDirPath() + "/" + fileName;
if (QFile::exists(fullPath)
@@ -430,9 +432,9 @@ int main(int argc, char *argv[]) } // we continue for the primary instance OR if MO has been called with parameters
QSettings settings(dataPath + "/" + QString::fromStdWString(AppConfig::iniFileName()), QSettings::IniFormat);
-
+ qDebug("initializing core");
OrganizerCore organizer(settings);
-
+ qDebug("initialize plugins");
PluginContainer pluginContainer(&organizer);
pluginContainer.loadPlugins();
|
