From 5f2c741f49245e90b46b2912f78cd2f3ba33d36a Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Thu, 10 Nov 2022 12:24:41 +0000 Subject: [PATCH] remove spammy ime logs --- src/managers/input/InputMethodRelay.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/managers/input/InputMethodRelay.cpp b/src/managers/input/InputMethodRelay.cpp index 99a593b9..d49623db 100644 --- a/src/managers/input/InputMethodRelay.cpp +++ b/src/managers/input/InputMethodRelay.cpp @@ -301,7 +301,7 @@ void CInputMethodRelay::createNewTextInput(wlr_text_input_v3* pInput) { const auto PINPUT = (STextInput*)owner; if (!g_pInputManager->m_sIMERelay.m_pWLRIME) { - Debug::log(WARN, "Enabling TextInput on no IME!"); + // Debug::log(WARN, "Enabling TextInput on no IME!"); return; } @@ -317,7 +317,7 @@ void CInputMethodRelay::createNewTextInput(wlr_text_input_v3* pInput) { const auto PINPUT = (STextInput*)owner; if (!g_pInputManager->m_sIMERelay.m_pWLRIME) { - Debug::log(WARN, "Committing TextInput on no IME!"); + // Debug::log(WARN, "Committing TextInput on no IME!"); return; } @@ -335,7 +335,7 @@ void CInputMethodRelay::createNewTextInput(wlr_text_input_v3* pInput) { const auto PINPUT = (STextInput*)owner; if (!g_pInputManager->m_sIMERelay.m_pWLRIME) { - Debug::log(WARN, "Disabling TextInput on no IME!"); + // Debug::log(WARN, "Disabling TextInput on no IME!"); return; } @@ -352,7 +352,7 @@ void CInputMethodRelay::createNewTextInput(wlr_text_input_v3* pInput) { const auto PINPUT = (STextInput*)owner; if (!g_pInputManager->m_sIMERelay.m_pWLRIME) { - Debug::log(WARN, "Disabling TextInput on no IME!"); + // Debug::log(WARN, "Disabling TextInput on no IME!"); return; }