commit | 9d37e2ab0a77d0bcec0c3d74d0d300aac78b8083 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Fri Apr 12 23:49:02 2024 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Apr 12 23:49:02 2024 +0000 |
tree | 4e96159080d0cc7b5a1f6625fd4c01715ec297a4 | |
parent | 6c5c8cddd088eacf79dbff7667db15062b5d5052 [diff] | |
parent | 963c2298c80b7672ea0b48659e0509a7a9e96ecf [diff] |
Merge "Add missing argument to ALOGE" into main am: 963c2298c8 Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/3038713 Change-Id: I44980033b38fa74194bd81675bbda78d1ca4956a Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/cmds/servicemanager/ServiceManager.cpp b/cmds/servicemanager/ServiceManager.cpp index a5c0c60..95a05cd 100644 --- a/cmds/servicemanager/ServiceManager.cpp +++ b/cmds/servicemanager/ServiceManager.cpp
@@ -790,7 +790,8 @@ if (OK != IInterface::asBinder(cb)->linkToDeath(sp<ServiceManager>::fromExisting(this))) { - ALOGE("%s Could not linkToDeath when adding client callback for %s", name.c_str()); + ALOGE("%s Could not linkToDeath when adding client callback for %s", + ctx.toDebugString().c_str(), name.c_str()); return Status::fromExceptionCode(Status::EX_ILLEGAL_STATE, "Couldn't linkToDeath."); }