diff options
author | Joe Onorato <joeo@google.com> | 2011-04-06 12:04:35 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-04-06 12:04:35 -0700 |
commit | e4e551e0ffb1113984ed0ae0264a54e9c8289f8d (patch) | |
tree | 20db6d0b77bc462349411036c1a19d5778ffa829 /services | |
parent | b589f47d01fdd3a857dcdedb303afd87f81d12a9 (diff) | |
parent | 63ebffcb84f4e2fc55d576aed07c4559f66d97a8 (diff) | |
download | frameworks_base-e4e551e0ffb1113984ed0ae0264a54e9c8289f8d.zip frameworks_base-e4e551e0ffb1113984ed0ae0264a54e9c8289f8d.tar.gz frameworks_base-e4e551e0ffb1113984ed0ae0264a54e9c8289f8d.tar.bz2 |
Merge "turn off log spew"
Diffstat (limited to 'services')
-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 eb14180..948118f 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 8d40000..da3ebaf 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; |