diff options
| author | 2022-11-07 20:22:47 +0000 | |
|---|---|---|
| committer | 2022-11-07 20:22:47 +0000 | |
| commit | 6d4f8545ec678859f8295a34cfa3e3637c92b91f (patch) | |
| tree | 31dc99137b3b53fd5a17e959144089ff2752a789 /cmds/servicemanager/ServiceManager.cpp | |
| parent | 7e95846bd6c8015be208ff93da23b767f53b3443 (diff) | |
| parent | ba0f33c9d30a4d0a41ad1212a66ac9583205d50f (diff) | |
Merge "Add clarification to lazy HAL service message."
Diffstat (limited to 'cmds/servicemanager/ServiceManager.cpp')
| -rw-r--r-- | cmds/servicemanager/ServiceManager.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/cmds/servicemanager/ServiceManager.cpp b/cmds/servicemanager/ServiceManager.cpp index 2684f048f8..2ae61b9603 100644 --- a/cmds/servicemanager/ServiceManager.cpp +++ b/cmds/servicemanager/ServiceManager.cpp @@ -612,7 +612,8 @@ void ServiceManager::binderDied(const wp<IBinder>& who) {  }  void ServiceManager::tryStartService(const std::string& name) { -    ALOGI("Since '%s' could not be found, trying to start it as a lazy AIDL service", +    ALOGI("Since '%s' could not be found, trying to start it as a lazy AIDL service. (if it's not " +          "configured to be a lazy service, it may be stuck starting or still starting).",            name.c_str());      std::thread([=] {  |