mirror of https://github.com/nymea/nymea.git
71 lines
3.3 KiB
C
71 lines
3.3 KiB
C
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2015-2018 Simon Stürz <simon.stuerz@guh.io> *
|
|
* *
|
|
* This file is part of nymea. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Lesser General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2.1 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library 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 *
|
|
* Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
* License along with this library; If not, see *
|
|
* <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef LOGGINGCATEGORYS_H
|
|
#define LOGGINGCATEGORYS_H
|
|
|
|
#include <QLoggingCategory>
|
|
#include <QDebug>
|
|
|
|
// Core / libnymea
|
|
Q_DECLARE_LOGGING_CATEGORY(dcApplication)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcPluginMetadata)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcDevice)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcDeviceManager)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcSystem)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcPlatform)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcPlatformUpdate)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcPlatformZeroConf)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcExperiences)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcTimeManager)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcRuleEngine)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcRuleEngineDebug)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcHardware)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcLogEngine)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcServerManager)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcTcpServer)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcTcpServerTraffic)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcWebServer)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcWebServerTraffic)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcDebugServer)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcWebSocketServer)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcWebSocketServerTraffic)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcJsonRpc)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcJsonRpcTraffic)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcRest)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcOAuth2)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcUpnp)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcBluetooth)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcCloud)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcCloudTraffic)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcNetworkManager)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcUserManager)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcAWS)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcAWSTraffic)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcBluetoothServer)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcBluetoothServerTraffic)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcMqtt)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcTranslations)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcCoap)
|
|
|
|
#endif // LOGGINGCATEGORYS_H
|