diff options
| author | 2023-03-29 14:50:49 +0000 | |
|---|---|---|
| committer | 2023-03-29 14:50:49 +0000 | |
| commit | c4310a6033d7c69397b2cf5eb12a1a39d2a25fb1 (patch) | |
| tree | 1acb4fb7dfe1d089a498a8c844d5e7177640ccda | |
| parent | d166b3b832d1c4aedb56c60e82df0b141a58b07e (diff) | |
| parent | bf9da6363933655849e2640bb9cadfac4068a990 (diff) | |
Merge "Add stack trace for OPS disconnect reason logging" into udc-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/recents/OverviewProxyService.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/recents/OverviewProxyService.java b/packages/SystemUI/src/com/android/systemui/recents/OverviewProxyService.java index 80eea81a541d..1b83397b1afb 100644 --- a/packages/SystemUI/src/com/android/systemui/recents/OverviewProxyService.java +++ b/packages/SystemUI/src/com/android/systemui/recents/OverviewProxyService.java @@ -788,7 +788,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); |