mirror of https://github.com/nymea/nymea.git
64 lines
2.9 KiB
C
64 lines
2.9 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>
|
|
|
|
// Include dcCoap
|
|
#include "coap/coap.h"
|
|
|
|
// Core / libnymea
|
|
Q_DECLARE_LOGGING_CATEGORY(dcApplication)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcDeviceManager)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcTimeManager)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcRuleEngine)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcRuleEngineDebug)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcHardware)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcConnection)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcLogEngine)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcTcpServer)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcTcpServerTraffic)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcWebServer)
|
|
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(dcAvahi)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcUpnp)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcBluetooth)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcCloud)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcNetworkManager)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcUserManager)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcAWS)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcAWSTraffic)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcJanus)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcJanusTraffic)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcBluetoothServer)
|
|
Q_DECLARE_LOGGING_CATEGORY(dcBluetoothServerTraffic)
|
|
|
|
#endif // LOGGINGCATEGORYS_H
|