diff --git a/init/service.cpp b/init/service.cpp index 565cae731..95b37abe2 100644 --- a/init/service.cpp +++ b/init/service.cpp @@ -787,9 +787,9 @@ Result 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(); }