diff options
| author | 2021-02-10 17:09:11 +0000 | |
|---|---|---|
| committer | 2021-02-18 22:08:32 +0000 | |
| commit | b269b585d3919b33ada3432cd15ac2135ad1017b (patch) | |
| tree | c194c672f2bea738fd07c934bb7f1abc8aefb8e2 | |
| parent | 85906d7cc766a4380091a5def7f3ea3b44790a53 (diff) | |
stability log dump interface descriptor
This may require another IPC, but one is being made anyway, so we might
as well get the good log.
Bug: 179906909
Test: N/A
Change-Id: Ib29d532ca5d7ede4540bd1b42ccebf262d890444
| -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; } |