2020-11-21 16:20:10 +01:00
|
|
|
#include "common/QLogging.hpp"
|
|
|
|
|
|
|
|
#ifdef DEBUG_OFF
|
|
|
|
static constexpr QtMsgType logThreshold = QtWarningMsg;
|
|
|
|
#else
|
|
|
|
static constexpr QtMsgType logThreshold = QtDebugMsg;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoApp, "chatterino.app", logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoArgs, "chatterino.args", logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoBenchmark, "chatterino.benchmark", logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoBttv, "chatterino.bttv", logThreshold);
|
2021-07-02 22:56:37 +02:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoCache, "chatterino.cache", logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoCommon, "chatterino.common", logThreshold);
|
2020-11-21 16:20:10 +01:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoEmoji, "chatterino.emoji", logThreshold);
|
2022-08-06 13:38:10 +02:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoEnv, "chatterino.env", logThreshold);
|
2020-11-21 16:20:10 +01:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoFfzemotes, "chatterino.ffzemotes", logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoHelper, "chatterino.helper", logThreshold);
|
2022-08-06 18:18:34 +02:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoHighlights, "chatterino.highlights", logThreshold);
|
2021-11-21 18:46:21 +01:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoHotkeys, "chatterino.hotkeys", logThreshold);
|
2021-07-25 00:52:34 +02:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoHTTP, "chatterino.http", logThreshold);
|
2020-11-21 16:20:10 +01:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoImage, "chatterino.image", logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoIrc, "chatterino.irc", logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoIvr, "chatterino.ivr", logThreshold);
|
2022-10-29 14:01:01 +02:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoLiveupdates, "chatterino.liveupdates",
|
|
|
|
logThreshold);
|
2020-11-21 16:20:10 +01:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoMain, "chatterino.main", logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoMessage, "chatterino.message", logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoNativeMessage, "chatterino.nativemessage",
|
|
|
|
logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoNotification, "chatterino.notification",
|
|
|
|
logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoNuulsuploader, "chatterino.nuulsuploader",
|
|
|
|
logThreshold);
|
2022-05-07 17:22:39 +02:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoPubSub, "chatterino.pubsub", logThreshold);
|
2022-08-06 18:18:34 +02:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoRecentMessages, "chatterino.recentmessages",
|
|
|
|
logThreshold);
|
2022-10-02 15:27:55 +02:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoSettings, "chatterino.settings", logThreshold);
|
2022-10-16 13:22:17 +02:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoSeventv, "chatterino.seventv", logThreshold);
|
2022-11-13 12:07:41 +01:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoSeventvEventAPI, "chatterino.seventv.eventapi",
|
|
|
|
logThreshold);
|
2021-01-09 22:14:25 +01:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoStreamerMode, "chatterino.streamermode",
|
|
|
|
logThreshold);
|
2022-10-02 15:27:55 +02:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoStreamlink, "chatterino.streamlink", logThreshold);
|
2020-11-21 16:20:10 +01:00
|
|
|
Q_LOGGING_CATEGORY(chatterinoTokenizer, "chatterino.tokenizer", logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoTwitch, "chatterino.twitch", logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoUpdate, "chatterino.update", logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoWebsocket, "chatterino.websocket", logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoWidget, "chatterino.widget", logThreshold);
|
|
|
|
Q_LOGGING_CATEGORY(chatterinoWindowmanager, "chatterino.windowmanager",
|
|
|
|
logThreshold);
|