1
0
Fork 0

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

This commit is contained in:
sspanak 2024-04-08 19:40:54 +03:00 committed by Dimo Karaivanov
parent 46fda4adee
commit ef322ee0f8

View file

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