init: print service name when started waiting
Bug: 110479595 Test: Boot Change-Id: I448a64cec4c1cd5b736f8b9d04cd26429067bb71
This commit is contained in:
parent
9a2891c84b
commit
2c4ee75b1e
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue