fix: 8017, move wayland error to debug context

This commit is contained in:
sithlord48
2024-12-28 08:32:31 -05:00
committed by Nick Bolton
parent 2455e0e29f
commit 13b58f2f7a
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -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;