Change default logging category to QtCriticalMsg
Less noisy KWin by default.
This commit is contained in:
parent
53004b95ff
commit
125cc5082f
8 changed files with 8 additions and 8 deletions
|
@ -18,4 +18,4 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*********************************************************************/
|
||||
#include "logging.h"
|
||||
Q_LOGGING_CATEGORY(KWIN_DRM, "kwin_wayland_drm")
|
||||
Q_LOGGING_CATEGORY(KWIN_DRM, "kwin_wayland_drm", QtCriticalMsg)
|
||||
|
|
|
@ -18,4 +18,4 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*********************************************************************/
|
||||
#include "logging.h"
|
||||
Q_LOGGING_CATEGORY(KWIN_FB, "kwin_wayland_framebuffer")
|
||||
Q_LOGGING_CATEGORY(KWIN_FB, "kwin_wayland_framebuffer", QtCriticalMsg)
|
||||
|
|
|
@ -18,4 +18,4 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*********************************************************************/
|
||||
#include "logging.h"
|
||||
Q_LOGGING_CATEGORY(KWIN_HWCOMPOSER, "kwin_wayland_hwcomposer")
|
||||
Q_LOGGING_CATEGORY(KWIN_HWCOMPOSER, "kwin_wayland_hwcomposer", QtCriticalMsg)
|
||||
|
|
|
@ -18,4 +18,4 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*********************************************************************/
|
||||
#include "logging.h"
|
||||
Q_LOGGING_CATEGORY(KWIN_WAYLAND_BACKEND, "kwin_wayland_backend")
|
||||
Q_LOGGING_CATEGORY(KWIN_WAYLAND_BACKEND, "kwin_wayland_backend", QtCriticalMsg)
|
||||
|
|
|
@ -18,4 +18,4 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*********************************************************************/
|
||||
#include "logging.h"
|
||||
Q_LOGGING_CATEGORY(KWIN_X11WINDOWED, "kwin_wayland_x11windowed")
|
||||
Q_LOGGING_CATEGORY(KWIN_X11WINDOWED, "kwin_wayland_x11windowed", QtCriticalMsg)
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <KConfig>
|
||||
#include <KConfigGroup>
|
||||
|
||||
Q_LOGGING_CATEGORY(AURORAE, "aurorae")
|
||||
Q_LOGGING_CATEGORY(AURORAE, "aurorae", QtCriticalMsg)
|
||||
|
||||
namespace Aurorae {
|
||||
|
||||
|
|
|
@ -18,4 +18,4 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*********************************************************************/
|
||||
#include <kwineffects.h>
|
||||
Q_LOGGING_CATEGORY(KWINEFFECTS, "kwineffects");
|
||||
Q_LOGGING_CATEGORY(KWINEFFECTS, "kwineffects", QtCriticalMsg);
|
||||
|
|
|
@ -44,7 +44,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
||||
#endif
|
||||
|
||||
Q_LOGGING_CATEGORY(KWIN_CORE, "kwin_core")
|
||||
Q_LOGGING_CATEGORY(KWIN_CORE, "kwin_core", QtCriticalMsg)
|
||||
namespace KWin
|
||||
{
|
||||
|
||||
|
|
Loading…
Reference in a new issue