summaryrefslogtreecommitdiffstats
path: root/core/java/android/app/ContextImpl.java
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2012-11-27 19:12:23 -0800
committerDianne Hackborn <hackbod@google.com>2012-11-27 19:12:23 -0800
commit40e9f2922cae76ffcbc521481e5be8e80e8744ef (patch)
tree8eb1822dd2832b729d4b262b616ecc050d9cf266 /core/java/android/app/ContextImpl.java
parentba4ac51823c59152e2167365b81ac56857b6b4d0 (diff)
downloadframeworks_base-40e9f2922cae76ffcbc521481e5be8e80e8744ef.zip
frameworks_base-40e9f2922cae76ffcbc521481e5be8e80e8744ef.tar.gz
frameworks_base-40e9f2922cae76ffcbc521481e5be8e80e8744ef.tar.bz2
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 'core/java/android/app/ContextImpl.java')
-rw-r--r--core/java/android/app/ContextImpl.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/app/ContextImpl.java b/core/java/android/app/ContextImpl.java
index 95b6bed..f895ccc 100644
--- a/core/java/android/app/ContextImpl.java
+++ b/core/java/android/app/ContextImpl.java
@@ -168,7 +168,7 @@ class ReceiverRestrictedContext extends ContextWrapper {
* context object for Activity and other application components.
*/
class ContextImpl extends Context {
- private final static String TAG = "ApplicationContext";
+ private final static String TAG = "ContextImpl";
private final static boolean DEBUG = false;
private static final HashMap<String, SharedPreferencesImpl> sSharedPrefs =
@@ -1715,7 +1715,7 @@ class ContextImpl extends Context {
private void warnIfCallingFromSystemProcess() {
if (Process.myUid() == Process.SYSTEM_UID) {
Slog.w(TAG, "Calling a method in the system process without a qualified user: "
- + Debug.getCallers(3));
+ + Debug.getCallers(5));
}
}