summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2021-02-19 01:42:22 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2021-02-19 01:42:22 +0000
commit0eb29920bb409ce4ab18d887dbd4cfcb1024714c (patch)
treef6b4a2daf2ca37e81796426ef6dd5b16fa0eb6c1
parent69bd0bd99d883108971ac3ac3c1ea13c2b3e57f5 (diff)
parentd40036791bd882431bafb7e5d3401a1661c6e459 (diff)
Merge "stability log dump interface descriptor" am: d40036791b
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1582874 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I3f729391f41f41d4d8c129be6e77b0cbb61bf78d
-rw-r--r--libs/binder/BpBinder.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/binder/BpBinder.cpp b/libs/binder/BpBinder.cpp
index bf4387a0a1..ddda024a40 100644
--- a/libs/binder/BpBinder.cpp
+++ b/libs/binder/BpBinder.cpp
@@ -228,8 +228,9 @@ status_t BpBinder::transact(
: Stability::getLocalLevel();
if (CC_UNLIKELY(!Stability::check(category, required))) {
- ALOGE("Cannot do a user transaction on a %s binder in a %s context.",
+ ALOGE("Cannot do a user transaction on a %s binder (%s) in a %s context.",
category.debugString().c_str(),
+ String8(getInterfaceDescriptor()).c_str(),
Stability::levelString(required).c_str());
return BAD_TYPE;
}