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

Commit b912a292 authored by Wei Wang's avatar Wei Wang Committed by android-build-merger
Browse files

Merge "init: print service name when started waiting" am: d41a1f9a

am: 736d63c7

Change-Id: Ie1463477d84c5154c23ba312bffab2f05fa8d247
parents e7c8bfc0 736d63c7
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -787,9 +787,9 @@ Result<Success> Service::ExecStart() {
    flags_ |= SVC_EXEC;
    is_exec_service_running_ = true;

    LOG(INFO) << "SVC_EXEC pid " << pid_ << " (uid " << uid_ << " gid " << gid_ << "+"
              << supp_gids_.size() << " context " << (!seclabel_.empty() ? seclabel_ : "default")
              << ") started; waiting...";
    LOG(INFO) << "SVC_EXEC service '" << name_ << "' pid " << pid_ << " (uid " << uid_ << " gid "
              << gid_ << "+" << supp_gids_.size() << " context "
              << (!seclabel_.empty() ? seclabel_ : "default") << ") started; waiting...";

    return Success();
}