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

Commit ef086dd8 authored by Steven Moreland's avatar Steven Moreland
Browse files

libbinder: -case in 'Waiting for service' log.

This log used to distinguish between vendor and
system services, but I'm simplifying it here
to just print the devnode.

Bug: N/A
Test: boot device
Change-Id: Ie10042caf5d28c59e54a832a6bf7b140f6251265
parent 2d0d167e
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -161,12 +161,8 @@ public:
        int n = 0;
        while (uptimeMillis() < timeout) {
            n++;
            if (isVendorService) {
                ALOGI("Waiting for vendor service %s...", String8(name).string());
                CallStack stack(LOG_TAG);
            } else if (n%10 == 0) {
                ALOGI("Waiting for service %s...", String8(name).string());
            }
            ALOGI("Waiting for service '%s' on '%s'...", String8(name).string(),
                ProcessState::self()->getDriverName().c_str());
            usleep(1000*sleepTime);

            sp<IBinder> svc = checkService(name);