Merge "libbinder_ndk: add log to death rec. CHECK" am: 2c2c5d197f am: 1e311eb204

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1668469

Change-Id: If5b016ad0ce5301d549090b5bb44d7cb32972dcf
diff --git a/libs/binder/ndk/ibinder.cpp b/libs/binder/ndk/ibinder.cpp
index 76afd4c..883403a 100644
--- a/libs/binder/ndk/ibinder.cpp
+++ b/libs/binder/ndk/ibinder.cpp
@@ -363,7 +363,8 @@
 }
 
 void AIBinder_DeathRecipient::TransferDeathRecipient::binderDied(const wp<IBinder>& who) {
-    CHECK(who == mWho);
+    CHECK(who == mWho) << who.unsafe_get() << "(" << who.get_refs() << ") vs " << mWho.unsafe_get()
+                       << " (" << mWho.get_refs() << ")";
 
     mOnDied(mCookie);