diff options
| author | 2011-04-06 11:47:23 -0700 | |
|---|---|---|
| committer | 2011-04-06 11:50:50 -0700 | |
| commit | 63ebffcb84f4e2fc55d576aed07c4559f66d97a8 (patch) | |
| tree | 64f189f3c3f5956f46b9d13ad1d61583b341425b | |
| parent | ea495d4c1f6e0aefe145a9a6c75a2aab4daf2037 (diff) | |
turn off log spew
Change-Id: I7e5564e02460ff41829c9fd26d80032ea3104498
| -rw-r--r-- | services/java/com/android/server/TelephonyRegistry.java | 1 | ||||
| -rw-r--r-- | services/java/com/android/server/pm/Installer.java | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/services/java/com/android/server/TelephonyRegistry.java b/services/java/com/android/server/TelephonyRegistry.java index eb14180766b2..948118fa5c71 100644 --- a/services/java/com/android/server/TelephonyRegistry.java +++ b/services/java/com/android/server/TelephonyRegistry.java @@ -279,7 +279,6 @@ class TelephonyRegistry extends ITelephonyRegistry.Stub { if (!checkNotifyPermission("notifyServiceState()")){ return; } - Slog.i(TAG, "notifyServiceState: " + state); synchronized (mRecords) { mServiceState = state; for (Record r : mRecords) { diff --git a/services/java/com/android/server/pm/Installer.java b/services/java/com/android/server/pm/Installer.java index 8d40000b1571..da3ebaf6c5d4 100644 --- a/services/java/com/android/server/pm/Installer.java +++ b/services/java/com/android/server/pm/Installer.java @@ -28,7 +28,7 @@ import java.io.OutputStream; class Installer { private static final String TAG = "Installer"; - private static final boolean LOCAL_DEBUG = true; + private static final boolean LOCAL_DEBUG = false; InputStream mIn; |