chore(logging): downgrade text input log level to debug

This commit is contained in:
2026-07-20 20:00:07 +08:00
parent 6a328f75c1
commit fd995175fe

View File

@@ -823,13 +823,13 @@ std::string App::get_clipboard_text() {
} }
void App::start_text_input() { void App::start_text_input() {
Logger::info("Start Text Input"); Logger::debug("Start Text Input");
if (!SDL_StartTextInput(m_window.get_window())) { if (!SDL_StartTextInput(m_window.get_window())) {
Logger::error("Start Text Input Fail: {}", SDL_GetError()); Logger::error("Start Text Input Fail: {}", SDL_GetError());
} }
} }
void App::stop_text_input() { void App::stop_text_input() {
Logger::info("Stop Text Input"); Logger::debug("Stop Text Input");
SDL_StopTextInput(m_window.get_window()); SDL_StopTextInput(m_window.get_window());
} }