|
|
|
/*=====================================================================
|
|
|
|
|
|
|
|
QGroundControl Open Source Ground Control Station
|
|
|
|
|
|
|
|
(c) 2009 - 2015 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
|
|
|
|
|
|
|
|
This file is part of the QGROUNDCONTROL project
|
|
|
|
|
|
|
|
QGROUNDCONTROL is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
QGROUNDCONTROL is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
======================================================================*/
|
|
|
|
|
|
|
|
/// @file
|
|
|
|
/// @author Don Gagne <don@thegagnes.com>
|
|
|
|
|
|
|
|
#include "QGCLoggingCategory.h"
|
|
|
|
|
|
|
|
#include <QSettings>
|
|
|
|
|
|
|
|
// Add Global logging categories (not class specific) here using QGC_LOGGING_CATEGORY
|
|
|
|
QGC_LOGGING_CATEGORY(FirmwareUpgradeLog, "FirmwareUpgradeLog")
|
|
|
|
QGC_LOGGING_CATEGORY(FirmwareUpgradeVerboseLog, "FirmwareUpgradeVerboseLog")
|
|
|
|
QGC_LOGGING_CATEGORY(MissionCommandsLog, "MissionCommandsLog")
|
|
|
|
QGC_LOGGING_CATEGORY(MissionItemLog, "MissionItemLog")
|
|
|
|
QGC_LOGGING_CATEGORY(ParameterLoaderLog, "ParameterLoaderLog")
|
|
|
|
|
|
|
|
QGCLoggingCategoryRegister* _instance = NULL;
|
|
|
|
const char* QGCLoggingCategoryRegister::_filterRulesSettingsGroup = "LoggingFilters";
|
|
|
|
|
|
|
|
QGCLoggingCategoryRegister* QGCLoggingCategoryRegister::instance(void)
|
|
|
|
{
|
|
|
|
if (!_instance) {
|
|
|
|
_instance = new QGCLoggingCategoryRegister();
|
|
|
|
Q_CHECK_PTR(_instance);
|
|
|
|
}
|
|
|
|
|
|
|
|
return _instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList QGCLoggingCategoryRegister::registeredCategories(void)
|
|
|
|
{
|
|
|
|
_registeredCategories.sort();
|
|
|
|
return _registeredCategories;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QGCLoggingCategoryRegister::setCategoryLoggingOn(const QString& category, bool enable)
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
|
|
|
|
settings.beginGroup(_filterRulesSettingsGroup);
|
|
|
|
settings.setValue(category, enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QGCLoggingCategoryRegister::categoryLoggingOn(const QString& category)
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
|
|
|
|
settings.beginGroup(_filterRulesSettingsGroup);
|
|
|
|
return settings.value(category, false).toBool();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QGCLoggingCategoryRegister::setFilterRulesFromSettings(const QString& commandLineLoggingOptions)
|
|
|
|
{
|
|
|
|
if (!commandLineLoggingOptions.isEmpty()) {
|
|
|
|
_commandLineLoggingOptions = commandLineLoggingOptions;
|
|
|
|
}
|
|
|
|
QString filterRules;
|
|
|
|
|
|
|
|
// Turn off bogus ssl warning
|
|
|
|
filterRules += "qt.network.ssl.warning=false\n";
|
|
|
|
filterRules += "*Log.debug=false\n";
|
|
|
|
|
|
|
|
// Set up filters defined in settings
|
|
|
|
foreach (QString category, _registeredCategories) {
|
|
|
|
if (categoryLoggingOn(category)) {
|
|
|
|
filterRules += category;
|
|
|
|
filterRules += ".debug=true\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Command line rules take precedence, so they go last in the list
|
|
|
|
if (!_commandLineLoggingOptions.isEmpty()) {
|
|
|
|
QStringList logList = _commandLineLoggingOptions.split(",");
|
|
|
|
|
|
|
|
if (logList[0] == "full") {
|
|
|
|
filterRules += "*Log.debug=true\n";
|
|
|
|
for(int i=1; i<logList.count(); i++) {
|
|
|
|
filterRules += logList[i];
|
|
|
|
filterRules += ".debug=false\n";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
foreach(const QString &rule, logList) {
|
|
|
|
filterRules += rule;
|
|
|
|
filterRules += ".debug=true\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
qDebug() << "Filter rules" << filterRules;
|
|
|
|
QLoggingCategory::setFilterRules(filterRules);
|
|
|
|
}
|