diff options
author | Dianne Hackborn <hackbod@google.com> | 2012-11-27 19:12:23 -0800 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2012-11-27 19:12:23 -0800 |
commit | 40e9f2922cae76ffcbc521481e5be8e80e8744ef (patch) | |
tree | 8eb1822dd2832b729d4b262b616ecc050d9cf266 /services/java/com/android/server/MountService.java | |
parent | ba4ac51823c59152e2167365b81ac56857b6b4d0 (diff) |
Quiet down a lot of logging.
Also fix a little problem where the USER_STARTED broadcasts
were not being sent as ordered broadcasts(!).
Change-Id: I3aa3e0a9b3900967cdd2d115ee103371b0a50c41
Diffstat (limited to 'services/java/com/android/server/MountService.java')
-rw-r--r-- | services/java/com/android/server/MountService.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/services/java/com/android/server/MountService.java b/services/java/com/android/server/MountService.java index ad28a3668213..2e0c977d2ec5 100644 --- a/services/java/com/android/server/MountService.java +++ b/services/java/com/android/server/MountService.java @@ -105,9 +105,9 @@ class MountService extends IMountService.Stub // TODO: listen for user creation/deletion - private static final boolean LOCAL_LOGD = true; - private static final boolean DEBUG_UNMOUNT = true; - private static final boolean DEBUG_EVENTS = true; + private static final boolean LOCAL_LOGD = false; + private static final boolean DEBUG_UNMOUNT = false; + private static final boolean DEBUG_EVENTS = false; private static final boolean DEBUG_OBB = false; // Disable this since it messes up long-running cryptfs operations. |