diff options
author | 2024-12-02 18:33:09 +0000 | |
---|---|---|
committer | 2024-12-02 18:33:09 +0000 | |
commit | 917d6da6170b187ef05f3be757ad7ad822802068 (patch) | |
tree | 65c9631bfef2d689f1c78e22aa7cfb9ec921087c | |
parent | 76b68a48ba377473f99597128460364aea1b8ff6 (diff) |
libgui_tests: demote "Linked to input" log to info
This log indicates the expected, correct behaviour, so it shouldn't be
logged as an error.
Bug: 379758401
Change-Id: If347466408c6836251666246e7dc3d5ffc914782
Test: Treehugger
Flag: TEST_ONLY
-rw-r--r-- | libs/gui/tests/EndToEndNativeInputTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gui/tests/EndToEndNativeInputTest.cpp b/libs/gui/tests/EndToEndNativeInputTest.cpp index 0e84d68eec..dcda1eedd0 100644 --- a/libs/gui/tests/EndToEndNativeInputTest.cpp +++ b/libs/gui/tests/EndToEndNativeInputTest.cpp @@ -75,7 +75,7 @@ sp<IInputFlinger> getInputFlinger() { if (input == nullptr) { ALOGE("Failed to link to input service"); } else { - ALOGE("Linked to input"); + ALOGI("Linked to input"); } return interface_cast<IInputFlinger>(input); } |