1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-02 10:24:11 +01:00

OP-864 Fixed some debug logging cosmetic problems.

This commit is contained in:
Fredrik Arvidsson 2013-03-04 20:38:16 +01:00
parent 82a89700e1
commit b6746259c8

View File

@ -288,29 +288,29 @@ void MainWindow::extensionsInitialized()
#endif
directory.cd("default_configurations");
qDebug() << "Looking for configuration files in: " << directory.absolutePath();
qDebug() << "Looking for configuration files in:" << directory.absolutePath();
QString filename;
if(!commandLine.isEmpty() && QFile::exists(directory.absolutePath() + QDir::separator() + commandLine)) {
filename = directory.absolutePath() + QDir::separator() + commandLine;
qDebug() << "Configuration file " << filename << " specified on command line will be loaded.";
qDebug() << "Configuration file" << filename << "specified on command line will be loaded.";
}
else if(QFile::exists(directory.absolutePath() + QDir::separator() + DEFAULT_CONFIG_FILENAME)) {
filename = directory.absolutePath() + QDir::separator() + DEFAULT_CONFIG_FILENAME;
qDebug() << "Default configuration file " << filename << " will be loaded.";
qDebug() << "Default configuration file" << filename << "will be loaded.";
}
else {
qDebug() << "Default configuration file " << directory.absolutePath() << QDir::separator() << DEFAULT_CONFIG_FILENAME << " was not found.";
qDebug() << "Default configuration file " << directory.absolutePath() << QDir::separator() << DEFAULT_CONFIG_FILENAME << "was not found.";
importSettings *dialog = new importSettings(this);
dialog->loadFiles(directory.absolutePath());
dialog->exec();
filename = dialog->choosenConfig();
delete dialog;
qDebug() << "Configuration file " << filename << " was selected and will be loaded.";
qDebug() << "Configuration file" << filename << "was selected and will be loaded.";
}
qs = new QSettings(filename, XmlConfig::XmlSettingsFormat);
qDebug() << "Configuration file " << filename << " was loaded.";
qDebug() << "Configuration file" << filename << "was loaded.";
}
qs->beginGroup("General");