diff options
| author | 2021-02-19 01:42:22 +0000 | |
|---|---|---|
| committer | 2021-02-19 01:42:22 +0000 | |
| commit | 0eb29920bb409ce4ab18d887dbd4cfcb1024714c (patch) | |
| tree | f6b4a2daf2ca37e81796426ef6dd5b16fa0eb6c1 | |
| parent | 69bd0bd99d883108971ac3ac3c1ea13c2b3e57f5 (diff) | |
| parent | d40036791bd882431bafb7e5d3401a1661c6e459 (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.cpp | 3 |
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; } |