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:
parent
46fda4adee
commit
ef322ee0f8
1 changed files with 1 additions and 1 deletions
|
|
@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue