From 13b58f2f7a10bac967481fe39c45f220b7ccee2f Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Sat, 28 Dec 2024 08:32:31 -0500 Subject: [PATCH] fix: 8017, move wayland error to debug context --- src/lib/platform/EiKeyState.cpp | 2 +- src/lib/platform/EiScreen.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/platform/EiKeyState.cpp b/src/lib/platform/EiKeyState.cpp index f155d4455..9e5775ad3 100644 --- a/src/lib/platform/EiKeyState.cpp +++ b/src/lib/platform/EiKeyState.cpp @@ -63,7 +63,7 @@ void EiKeyState::init(int fd, size_t len) auto sz = read(fd, buffer.get(), len); if ((size_t)sz < len) { - LOG_NOTE("failed to create xkb context: %s", strerror(errno)); + LOG_DEBUG("failed to create xkb context: %s", strerror(errno)); return; } diff --git a/src/lib/platform/EiScreen.cpp b/src/lib/platform/EiScreen.cpp index 3e1daaae9..841f69bab 100644 --- a/src/lib/platform/EiScreen.cpp +++ b/src/lib/platform/EiScreen.cpp @@ -440,7 +440,7 @@ void EiScreen::update_shape() } } - LOG_NOTE("logical output size: %dx%d@%d.%d", w_, h_, x_, y_); + LOG_DEBUG("logical output size: %dx%d@%d.%d", w_, h_, x_, y_); cursor_x_ = x_ + w_ / 2; cursor_y_ = y_ + h_ / 2;