From 759922d9db7183347ea4fd4be8319b8cc6f6b611 Mon Sep 17 00:00:00 2001 From: Amith Yamasani Date: Fri, 24 Mar 2017 00:53:47 +0000 Subject: [PATCH] Revert "Logging to track #36406078" Not needed anymore, since the bug was found to be in the binder driver. This reverts commit 9afb1fc495aa132c4a5e3a5beca408597ab1bb09. Change-Id: I3891866f6e30a3f3391df8005e56bf9b9777b3a6 (cherry picked from commit ab5523f3372b9e36911aa25a8247f0a2fa16543a) --- core/java/android/app/ActivityThread.java | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/core/java/android/app/ActivityThread.java b/core/java/android/app/ActivityThread.java index b4e6bd5856c7d..e89dc0bd19562 100644 --- a/core/java/android/app/ActivityThread.java +++ b/core/java/android/app/ActivityThread.java @@ -808,11 +808,6 @@ public final class ActivityThread { public final void scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras, boolean sync, int sendingUser, int processState) { - // TODO: Debugging added for bug:36406078 . Remove when done - if (Log.isLoggable("36406078", Log.DEBUG)) { - Log.d(TAG, "scheduleReceiver"); - } - updateProcessState(processState, false); ReceiverData r = new ReceiverData(intent, resultCode, data, extras, sync, false, mAppThread.asBinder(), sendingUser); @@ -899,11 +894,6 @@ public final class ActivityThread { CompatibilityInfo compatInfo, Map services, Bundle coreSettings, String buildSerial) { - // TODO: Debugging added for bug:36406078 . Remove when done - if (Log.isLoggable("36406078", Log.DEBUG)) { - Log.d(TAG, "bindApplication: " + processName); - } - if (services != null) { // Setup the service cache in the ServiceManager ServiceManager.initServiceCache(services); @@ -3239,10 +3229,6 @@ public final class ActivityThread { if (receiver.getPendingResult() != null) { data.finish(); } - // TODO: Debugging added for bug:36406078 . Remove when done - if (Log.isLoggable("36406078", Log.DEBUG)) { - Log.d(TAG, "handleReceiver done"); - } } // Instantiate a BackupAgent and tell it that it's alive @@ -5778,10 +5764,6 @@ public final class ActivityThread { } catch (RemoteException e) { throw e.rethrowFromSystemServer(); } - // TODO: Debugging added for bug:36406078 . Remove when done - if (Log.isLoggable("36406078", Log.DEBUG)) { - Log.d(TAG, "handleBindApplication done"); - } } /*package*/ final void finishInstrumentation(int resultCode, Bundle results) {