From 66c4a824b9b11a47c7bd1bf858d92fe207409ab9 Mon Sep 17 00:00:00 2001 From: Craig Mautner Date: Fri, 16 Jan 2015 12:48:16 -0800 Subject: More debugging for bug 18201239. Fixes bug 19045133. Change-Id: I2ef2b8600278ed91df59db4acf4740dac970ee3a --- core/java/android/app/ActivityThread.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'core/java/android/app/ActivityThread.java') diff --git a/core/java/android/app/ActivityThread.java b/core/java/android/app/ActivityThread.java index 3304c76..b5c0e90 100644 --- a/core/java/android/app/ActivityThread.java +++ b/core/java/android/app/ActivityThread.java @@ -2931,6 +2931,8 @@ public final class ActivityThread { token, 0, 0, 0); } catch (RemoteException e) { // nothing to do. + Slog.i(TAG, "handleStopService: unable to execute serviceDoneExecuting for " + + token, e); } } catch (Exception e) { if (!mInstrumentation.onException(s, e)) { @@ -2938,6 +2940,7 @@ public final class ActivityThread { "Unable to stop service " + s + ": " + e.toString(), e); } + Slog.i(TAG, "handleStopService: exception for " + token, e); } } else { Slog.i(TAG, "handleStopService: token=" + token + " not found."); -- cgit v1.1