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

Commit 7a008f2a authored by Jack Yu's avatar Jack Yu
Browse files

Moved debug message into verbose channel

Fix: 281871313
Test: Boot up and basic phone functionality tests
Change-Id: I009f5e36e84be094fcdfd0bca9eec700619c3808
parent 3dd7975a
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -3565,7 +3565,7 @@ public class SubscriptionManagerService extends ISub.Stub {
            }

            UserHandle userHandle = UserHandle.of(subInfo.getUserId());
            log("getSubscriptionUserHandle subId = " + subId + " userHandle = " + userHandle);
            logv("getSubscriptionUserHandle subId = " + subId + " userHandle = " + userHandle);
            if (userHandle.getIdentifier() == UserHandle.USER_NULL) {
                return null;
            }
@@ -3928,6 +3928,15 @@ public class SubscriptionManagerService extends ISub.Stub {
        mLocalLog.log(s);
    }

    /**
     * Log verbose messages.
     *
     * @param s verbose messages
     */
    private void logv(@NonNull String s) {
        Rlog.v(LOG_TAG, s);
    }

    /**
     * Dump the state of {@link SubscriptionManagerService}.
     *