From ef322ee0f8e34d76c27b75ea782619cd813915a8 Mon Sep 17 00:00:00 2001 From: sspanak Date: Mon, 8 Apr 2024 19:40:54 +0300 Subject: [PATCH] changed the log level of text case validation to DEBUG, because it is a regular operation, which happens all the time, so there is no need to flood the logs --- .../io/github/sspanak/tt9/ime/helpers/InputModeValidator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/io/github/sspanak/tt9/ime/helpers/InputModeValidator.java b/app/src/main/java/io/github/sspanak/tt9/ime/helpers/InputModeValidator.java index 378394e1..3ba846cb 100644 --- a/app/src/main/java/io/github/sspanak/tt9/ime/helpers/InputModeValidator.java +++ b/app/src/main/java/io/github/sspanak/tt9/ime/helpers/InputModeValidator.java @@ -60,7 +60,7 @@ public class InputModeValidator { public static void validateTextCase(InputMode inputMode, int newTextCase) { if (!inputMode.setTextCase(newTextCase)) { inputMode.defaultTextCase(); - Logger.w("validateTextCase", "Invalid text case: " + newTextCase + " Enforcing: " + inputMode.getTextCase()); + Logger.d("validateTextCase", "Invalid text case: " + newTextCase + " Enforcing: " + inputMode.getTextCase()); } } }