Add stack trace for OPS disconnect reason logging

Bug: 266716173
Change-Id: Ic8e5bb14c029bc6e7c7b0a25409c0e93e7847009
This commit is contained in:
Vinit Nayak
2023-03-28 22:26:42 -07:00
parent 1cf8c65358
commit 5e5138e060

View File

@@ -786,7 +786,8 @@ public class OverviewProxyService implements CallbackController<OverviewProxyLis
private void disconnectFromLauncherService(String disconnectReason) {
Log.d(TAG_OPS, "disconnectFromLauncherService bound?: " + mBound +
" currentProxy: " + mOverviewProxy + " disconnectReason: " + disconnectReason);
" currentProxy: " + mOverviewProxy + " disconnectReason: " + disconnectReason,
new Throwable());
if (mBound) {
// Always unbind the service (ie. if called through onNullBinding or onBindingDied)
mContext.unbindService(mOverviewServiceConnection);