summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Moreland <smoreland@google.com>2022-11-05 01:13:56 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-11-05 01:13:56 +0000
commit74ba2c1904ea9ad9eacb2936a0a967ddd54082a4 (patch)
treee0a438b7c55eab76c3dd7bd081a3e1d30491239a
parenta625973f2786e3d36f4f91358b607a05c11d7e73 (diff)
parent709737569d536d36cda2702975af329934f49289 (diff)
downloadhwservicemanager-74ba2c1904ea9ad9eacb2936a0a967ddd54082a4.tar.gz
Add clarification to lazy HAL start message. am: e632f705b6 am: 709737569d
Original change: https://android-review.googlesource.com/c/platform/system/hwservicemanager/+/2288533 Change-Id: Ie9ad667d3c0597b3a405cd98d1baee3818bb67b6 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--ServiceManager.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ServiceManager.cpp b/ServiceManager.cpp
index 283b054..f80386b 100644
--- a/ServiceManager.cpp
+++ b/ServiceManager.cpp
@@ -252,7 +252,8 @@ static void tryStartService(const std::string& fqName, const std::string& name)
// running, then this will be a no-op. So, for instance, if a service is
// deadlocked during startup, you will see this message repeatedly.
LOG(INFO) << "Since " << fqName << "/" << name
- << " is not registered, trying to start it as a lazy HAL.";
+ << " is not registered, trying to start it as a lazy HAL (if it's not configured to "
+ "be a lazy HAL, it may be stuck starting or still starting).";
std::thread([=] {
if (!SetProperty("ctl.interface_start", fqName + "/" + name)) {