summaryrefslogtreecommitdiffstats
path: root/core/java/android/app/ContextImpl.java
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2012-11-28 15:03:39 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-11-28 15:03:39 -0800
commit68e0da7e397f6808a90509615c08c62bb00af6ba (patch)
tree5062b69f91f6bd99f12ade6121ebf78a7551db62 /core/java/android/app/ContextImpl.java
parentceafd15df99ed77c9e9ed5e93d2c1f062a095169 (diff)
parent40e9f2922cae76ffcbc521481e5be8e80e8744ef (diff)
downloadframeworks_base-68e0da7e397f6808a90509615c08c62bb00af6ba.zip
frameworks_base-68e0da7e397f6808a90509615c08c62bb00af6ba.tar.gz
frameworks_base-68e0da7e397f6808a90509615c08c62bb00af6ba.tar.bz2
Merge "Quiet down a lot of logging." into jb-mr1.1-dev
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));
}
}