blob: 0a7d3fdb5973027f1a6f7b2e130add675e7c998a [file] [log] [blame]
Wale Ogunwaled57969f2014-11-15 19:37:29 -08001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License
15 */
16
17package com.android.server.am;
18
19/**
20 * Common class for the various debug {@link android.util.Log} output configuration in the activity
21 * manager package.
22 */
23class ActivityManagerDebugConfig {
24
25 // All output logs in the activity manager package use the {@link #TAG_AM} string for tagging
26 // their log output. This makes it easy to identify the origin of the log message when sifting
27 // through a large amount of log output from multiple sources. However, it also makes trying
28 // to figure-out the origin of a log message while debugging the activity manager a little
29 // painful. By setting this constant to true, log messages from the activity manager package
30 // will be tagged with their class names instead fot the generic tag.
31 static final boolean TAG_WITH_CLASS_NAME = false;
32
Wale Ogunwale3ab9a272015-03-16 09:55:45 -070033 // While debugging it is sometimes useful to have the category name of the log appended to the
Wale Ogunwaled57969f2014-11-15 19:37:29 -080034 // base log tag to make sifting through logs with the same base tag easier. By setting this
Wale Ogunwale3ab9a272015-03-16 09:55:45 -070035 // constant to true, the category name of the log point will be appended to the log tag.
36 static final boolean APPEND_CATEGORY_NAME = false;
Wale Ogunwaled57969f2014-11-15 19:37:29 -080037
38 // Default log tag for the activity manager package.
39 static final String TAG_AM = "ActivityManager";
40
41 // Enable all debug log categories.
42 static final boolean DEBUG_ALL = false;
43
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070044 // Enable all debug log categories for activities.
45 static final boolean DEBUG_ALL_ACTIVITIES = DEBUG_ALL || false;
46
Wale Ogunwaled57969f2014-11-15 19:37:29 -080047 // Available log categories in the activity manager package.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070048 static final boolean DEBUG_ADD_REMOVE = DEBUG_ALL_ACTIVITIES || false;
Dianne Hackborn9369efd2016-03-02 15:49:58 -080049 static final boolean DEBUG_ANR = false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070050 static final boolean DEBUG_APP = DEBUG_ALL_ACTIVITIES || false;
Dianne Hackborn85e35642017-01-12 15:10:57 -080051 static final boolean DEBUG_BACKGROUND_CHECK = DEBUG_ALL || false;
Wale Ogunwaled57969f2014-11-15 19:37:29 -080052 static final boolean DEBUG_BACKUP = DEBUG_ALL || false;
53 static final boolean DEBUG_BROADCAST = DEBUG_ALL || false;
54 static final boolean DEBUG_BROADCAST_BACKGROUND = DEBUG_BROADCAST || false;
55 static final boolean DEBUG_BROADCAST_LIGHT = DEBUG_BROADCAST || false;
56 static final boolean DEBUG_CLEANUP = DEBUG_ALL || false;
57 static final boolean DEBUG_CONFIGURATION = DEBUG_ALL || false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070058 static final boolean DEBUG_CONTAINERS = DEBUG_ALL_ACTIVITIES || false;
Wale Ogunwaled57969f2014-11-15 19:37:29 -080059 static final boolean DEBUG_FOCUS = false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070060 static final boolean DEBUG_IDLE = DEBUG_ALL_ACTIVITIES || false;
Wale Ogunwaled57969f2014-11-15 19:37:29 -080061 static final boolean DEBUG_IMMERSIVE = DEBUG_ALL || false;
Craig Mautnere0570202015-05-13 13:06:11 -070062 static final boolean DEBUG_LOCKTASK = DEBUG_ALL || false;
Wale Ogunwaled57969f2014-11-15 19:37:29 -080063 static final boolean DEBUG_LRU = DEBUG_ALL || false;
64 static final boolean DEBUG_MU = DEBUG_ALL || false;
Sudheer Shankae7361852017-03-07 11:51:46 -080065 static final boolean DEBUG_NETWORK = DEBUG_ALL || false;
Wale Ogunwaled57969f2014-11-15 19:37:29 -080066 static final boolean DEBUG_OOM_ADJ = DEBUG_ALL || false;
Dianne Hackbornf4dd3712017-05-11 17:25:23 -070067 static final boolean DEBUG_OOM_ADJ_REASON = DEBUG_ALL || false;
Andrii Kulianb1888aa2018-02-16 14:40:42 -080068 static final boolean DEBUG_PAUSE = DEBUG_ALL || false;
Wale Ogunwaled57969f2014-11-15 19:37:29 -080069 static final boolean DEBUG_POWER = DEBUG_ALL || false;
70 static final boolean DEBUG_POWER_QUICK = DEBUG_POWER || false;
71 static final boolean DEBUG_PROCESS_OBSERVERS = DEBUG_ALL || false;
72 static final boolean DEBUG_PROCESSES = DEBUG_ALL || false;
73 static final boolean DEBUG_PROVIDER = DEBUG_ALL || false;
74 static final boolean DEBUG_PSS = DEBUG_ALL || false;
75 static final boolean DEBUG_RECENTS = DEBUG_ALL || false;
Winson Chungd6aa3db2017-10-05 17:18:43 -070076 static final boolean DEBUG_RECENTS_TRIM_TASKS = DEBUG_RECENTS || false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070077 static final boolean DEBUG_RELEASE = DEBUG_ALL_ACTIVITIES || false;
Wale Ogunwaled57969f2014-11-15 19:37:29 -080078 static final boolean DEBUG_RESULTS = DEBUG_ALL || false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070079 static final boolean DEBUG_SAVED_STATE = DEBUG_ALL_ACTIVITIES || false;
Wale Ogunwaled57969f2014-11-15 19:37:29 -080080 static final boolean DEBUG_SERVICE = DEBUG_ALL || false;
Dianne Hackborncb015632017-06-14 17:30:15 -070081 static final boolean DEBUG_FOREGROUND_SERVICE = DEBUG_ALL || false;
Wale Ogunwaled57969f2014-11-15 19:37:29 -080082 static final boolean DEBUG_SERVICE_EXECUTING = DEBUG_ALL || false;
83 static final boolean DEBUG_STACK = DEBUG_ALL || false;
Bryce Lee1d0d5142018-04-12 10:35:07 -070084 static final boolean DEBUG_STATES = DEBUG_ALL_ACTIVITIES || false;
Wale Ogunwaled57969f2014-11-15 19:37:29 -080085 static final boolean DEBUG_SWITCH = DEBUG_ALL || false;
86 static final boolean DEBUG_TASKS = DEBUG_ALL || false;
Wale Ogunwaled57969f2014-11-15 19:37:29 -080087 static final boolean DEBUG_TRANSITION = DEBUG_ALL || false;
Dianne Hackbornd23e0d62015-05-15 16:36:12 -070088 static final boolean DEBUG_UID_OBSERVERS = DEBUG_ALL || false;
Wale Ogunwaled57969f2014-11-15 19:37:29 -080089 static final boolean DEBUG_URI_PERMISSION = DEBUG_ALL || false;
90 static final boolean DEBUG_USER_LEAVING = DEBUG_ALL || false;
Chong Zhang2b79af12016-02-10 18:47:06 -080091 static final boolean DEBUG_VISIBILITY = DEBUG_ALL || false;
Amith Yamasani85757fc2015-04-03 13:31:18 -070092 static final boolean DEBUG_USAGE_STATS = DEBUG_ALL || false;
Svet Ganov9c165d72015-12-01 19:52:26 -080093 static final boolean DEBUG_PERMISSIONS_REVIEW = DEBUG_ALL || false;
Felipe Lemea1b79bf2016-05-24 13:06:54 -070094 static final boolean DEBUG_WHITELISTS = DEBUG_ALL || false;
Jorim Jaggi172e99f2017-10-20 14:33:18 +020095 static final boolean DEBUG_METRICS = DEBUG_ALL || false;
Wale Ogunwaled57969f2014-11-15 19:37:29 -080096
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070097 static final String POSTFIX_ADD_REMOVE = (APPEND_CATEGORY_NAME) ? "_AddRemove" : "";
98 static final String POSTFIX_APP = (APPEND_CATEGORY_NAME) ? "_App" : "";
Wale Ogunwale3ab9a272015-03-16 09:55:45 -070099 static final String POSTFIX_BACKUP = (APPEND_CATEGORY_NAME) ? "_Backup" : "";
100 static final String POSTFIX_BROADCAST = (APPEND_CATEGORY_NAME) ? "_Broadcast" : "";
101 static final String POSTFIX_CLEANUP = (APPEND_CATEGORY_NAME) ? "_Cleanup" : "";
102 static final String POSTFIX_CONFIGURATION = (APPEND_CATEGORY_NAME) ? "_Configuration" : "";
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700103 static final String POSTFIX_CONTAINERS = (APPEND_CATEGORY_NAME) ? "_Containers" : "";
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700104 static final String POSTFIX_FOCUS = (APPEND_CATEGORY_NAME) ? "_Focus" : "";
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700105 static final String POSTFIX_IDLE = (APPEND_CATEGORY_NAME) ? "_Idle" : "";
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700106 static final String POSTFIX_IMMERSIVE = (APPEND_CATEGORY_NAME) ? "_Immersive" : "";
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700107 static final String POSTFIX_LOCKTASK = (APPEND_CATEGORY_NAME) ? "_LockTask" : "";
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700108 static final String POSTFIX_LRU = (APPEND_CATEGORY_NAME) ? "_LRU" : "";
Wale Ogunwaled57969f2014-11-15 19:37:29 -0800109 static final String POSTFIX_MU = "_MU";
Sudheer Shankae7361852017-03-07 11:51:46 -0800110 static final String POSTFIX_NETWORK = "_Network";
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700111 static final String POSTFIX_OOM_ADJ = (APPEND_CATEGORY_NAME) ? "_OomAdj" : "";
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700112 static final String POSTFIX_PAUSE = (APPEND_CATEGORY_NAME) ? "_Pause" : "";
113 static final String POSTFIX_POWER = (APPEND_CATEGORY_NAME) ? "_Power" : "";
114 static final String POSTFIX_PROCESS_OBSERVERS = (APPEND_CATEGORY_NAME)
115 ? "_ProcessObservers" : "";
116 static final String POSTFIX_PROCESSES = (APPEND_CATEGORY_NAME) ? "_Processes" : "";
117 static final String POSTFIX_PROVIDER = (APPEND_CATEGORY_NAME) ? "_Provider" : "";
118 static final String POSTFIX_PSS = (APPEND_CATEGORY_NAME) ? "_Pss" : "";
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700119 static final String POSTFIX_RECENTS = (APPEND_CATEGORY_NAME) ? "_Recents" : "";
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700120 static final String POSTFIX_RELEASE = (APPEND_CATEGORY_NAME) ? "_Release" : "";
121 static final String POSTFIX_RESULTS = (APPEND_CATEGORY_NAME) ? "_Results" : "";
122 static final String POSTFIX_SAVED_STATE = (APPEND_CATEGORY_NAME) ? "_SavedState" : "";
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700123 static final String POSTFIX_SERVICE = (APPEND_CATEGORY_NAME) ? "_Service" : "";
Wale Ogunwaled57969f2014-11-15 19:37:29 -0800124 static final String POSTFIX_SERVICE_EXECUTING =
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700125 (APPEND_CATEGORY_NAME) ? "_ServiceExecuting" : "";
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700126 static final String POSTFIX_STACK = (APPEND_CATEGORY_NAME) ? "_Stack" : "";
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700127 static final String POSTFIX_STATES = (APPEND_CATEGORY_NAME) ? "_States" : "";
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700128 static final String POSTFIX_SWITCH = (APPEND_CATEGORY_NAME) ? "_Switch" : "";
129 static final String POSTFIX_TASKS = (APPEND_CATEGORY_NAME) ? "_Tasks" : "";
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700130 static final String POSTFIX_TRANSITION = (APPEND_CATEGORY_NAME) ? "_Transition" : "";
Dianne Hackbornd23e0d62015-05-15 16:36:12 -0700131 static final String POSTFIX_UID_OBSERVERS = (APPEND_CATEGORY_NAME)
132 ? "_UidObservers" : "";
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700133 static final String POSTFIX_URI_PERMISSION = (APPEND_CATEGORY_NAME) ? "_UriPermission" : "";
134 static final String POSTFIX_USER_LEAVING = (APPEND_CATEGORY_NAME) ? "_UserLeaving" : "";
135 static final String POSTFIX_VISIBILITY = (APPEND_CATEGORY_NAME) ? "_Visibility" : "";
Wale Ogunwaled57969f2014-11-15 19:37:29 -0800136
137}