Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4de153cd authored by Marissa Wall's avatar Marissa Wall
Browse files

IMapper: change an error message

Change the error message that prints when IMapper 3.0 isn't present.
The old warning was causing unnecessary concerns.

Bug: 128013727
Test: compile
Change-Id: I197cd953d08a8e9f3bdee92cede973bf1b97dfe2
(cherry picked from commit ccbd24f6)
parent 6f5a48f7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ class ComposerHandleImporter {
        if (mMapper3) {
            return true;
        }
        ALOGW_IF(!mMapper3, "failed to get mapper 3.0 service");
        ALOGD_IF(!mMapper3, "failed to get mapper 3.0 service, falling back to mapper 2.0");

        mMapper2 = mapper::V2_0::IMapper::getService();
        ALOGE_IF(!mMapper2, "failed to get mapper 2.0 service");