summaryrefslogtreecommitdiff
path: root/libs/binder/IPCThreadState.cpp
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2024-05-30 22:54:44 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-05-30 22:54:44 +0000
commitcfff052d867dde984fc0a3d080f6dd79a1a84563 (patch)
treeb596a627a77ce129edc3c856743bdfefa05a961d /libs/binder/IPCThreadState.cpp
parent32995fea7c333b33ff72f52c97a97de1777c8f14 (diff)
parentb6fe242037c31b8502aa2e5e9d1af048747ec3cd (diff)
Merge "libbinder: extended error more info" into main
Diffstat (limited to 'libs/binder/IPCThreadState.cpp')
-rw-r--r--libs/binder/IPCThreadState.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp
index ef96f803c3..e5be71c56b 100644
--- a/libs/binder/IPCThreadState.cpp
+++ b/libs/binder/IPCThreadState.cpp
@@ -1578,8 +1578,8 @@ void IPCThreadState::logExtendedError() {
}
#endif
- ALOGE_IF(ee.command != BR_OK, "Binder transaction failure: %d/%d/%d",
- ee.id, ee.command, ee.param);
+ ALOGE_IF(ee.command != BR_OK, "Binder transaction failure. id: %d, BR_*: %d, error: %d (%s)",
+ ee.id, ee.command, ee.param, strerror(-ee.param));
}
void IPCThreadState::freeBuffer(const uint8_t* data, size_t /*dataSize*/,