44176c6a8c
Warning messages are not the kind of messages that should be ignored, they indicate that something is off or wrong. Also, this makes triaging bugs easier as we no longer have to ask people to run kwin with the QT_LOGGING_RULES environment variable set.
12 lines
435 B
C++
12 lines
435 B
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#include "logging_p.h"
|
|
Q_LOGGING_CATEGORY(LIBKWINEFFECTS, "libkwineffects", QtWarningMsg)
|
|
Q_LOGGING_CATEGORY(LIBKWINGLUTILS, "libkwinglutils", QtWarningMsg)
|
|
Q_LOGGING_CATEGORY(LIBKWINXRENDERUTILS, "libkwinxrenderutils", QtWarningMsg)
|