summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2022-12-05 19:20:39 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2022-12-05 19:20:39 +0000
commitfca208d09ad9381fafe479aca013fa609f8a9d24 (patch)
treefd86d228e2ea72afc1c317d5791eac5f43553aec
parentbfbf069ee5c78a92cdba49b89ad42fd76f80d99d (diff)
parent85930a321d3553af1137d9259f848f2889f85c00 (diff)
Merge "Fix: update Binder#getCallingUidOrWtf to use wtfStack"
-rw-r--r--core/java/android/os/Binder.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/os/Binder.java b/core/java/android/os/Binder.java
index 2d244a9b469d..aa561050c919 100644
--- a/core/java/android/os/Binder.java
+++ b/core/java/android/os/Binder.java
@@ -366,7 +366,7 @@ public class Binder implements IBinder {
*/
public static final int getCallingUidOrWtf() {
if (!isDirectlyHandlingTransaction() && !hasExplicitIdentity()) {
- Log.wtf(TAG,
+ Log.wtfStack(TAG,
"Thread is not in a binder transaction, "
+ "and the calling identity has not been "
+ "explicitly set with clearCallingIdentity");