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

Commit d41a1f9a authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "init: print service name when started waiting"

parents 2e98fd23 2c4ee75b
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();
}