diff options
-rw-r--r-- | libs/binder/BpBinder.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/binder/BpBinder.cpp b/libs/binder/BpBinder.cpp index 238c9dcc7f..f16c39cdc1 100644 --- a/libs/binder/BpBinder.cpp +++ b/libs/binder/BpBinder.cpp @@ -435,7 +435,8 @@ void BpBinder::onLastStrongRef(const void* /*id*/) Vector<Obituary>* obits = mObituaries; if(obits != nullptr) { if (!obits->isEmpty()) { - ALOGI("onLastStrongRef automatically unlinking death recipients"); + ALOGI("onLastStrongRef automatically unlinking death recipients: %s", + mDescriptorCache.size() ? String8(mDescriptorCache).c_str() : "<uncached descriptor>"); } if (ipc) ipc->clearDeathNotification(mHandle, this); |