blob: e594ec50df7a019a0a594a971cc1ba00d8f430cd [file] [log] [blame]
keunyoungca515072015-07-10 12:21:47 -07001/*
2 * Copyright (C) 2015 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.car;
18
19public class CarLog {
Keun-young Park4727da32016-05-31 10:00:51 -070020 public static final String TAG_AM = "CAR.AM";
Vitalii Tomkiv46371472016-05-23 16:55:22 -070021 public static final String TAG_APP_FOCUS = "CAR.APP_FOCUS";
keunyoung4b0212c2015-10-29 17:11:57 -070022 public static final String TAG_AUDIO = "CAR.AUDIO";
Steve Paik43c04a72016-07-08 19:12:09 -070023 public static final String TAG_CABIN = "CAR.CABIN";
Steve Paik875616c2016-02-05 10:55:59 -080024 public static final String TAG_CAMERA = "CAR.CAMERA";
Keun-young Park4727da32016-05-31 10:00:51 -070025 public static final String TAG_CAN_BUS = "CAR.CAN_BUS";
26 public static final String TAG_CLUSTER = "CAR.CLUSTER";
keunyoungcc449f72015-08-12 10:46:27 -070027 public static final String TAG_HAL = "CAR.HAL";
Steve Paik66481982015-10-27 15:22:38 -070028 public static final String TAG_HVAC = "CAR.HVAC";
Pavel Maltsev634e1ff2016-07-14 15:41:26 -070029 public static final String TAG_VENDOR_EXT = "CAR.VENDOR_EXT";
keunyounga3b28d82015-08-25 13:05:15 -070030 public static final String TAG_INFO = "CAR.INFO";
Keun-young Park4727da32016-05-31 10:00:51 -070031 public static final String TAG_INPUT = "CAR.INPUT";
Vitalii Tomkiv901c0242016-08-19 13:13:16 -070032 public static final String TAG_MONITORING = "CAR.MONITORING";
Keun-young Park4727da32016-05-31 10:00:51 -070033 public static final String TAG_NAV = "CAR.NAV";
Keun-young Park4aeb4bf2015-12-08 18:31:33 -080034 public static final String TAG_PACKAGE = "CAR.PACKAGE";
keunyoung4b0212c2015-10-29 17:11:57 -070035 public static final String TAG_POWER = "CAR.POWER";
Keun-young Park4727da32016-05-31 10:00:51 -070036 public static final String TAG_PROJECTION = "CAR.PROJECTION";
Steve Paik461ecc62016-06-08 15:28:32 -070037 public static final String TAG_PROPERTY = "CAR.PROPERTY";
Sanket Agarwal3cf096a2015-10-13 14:46:31 -070038 public static final String TAG_RADIO = "CAR.RADIO";
keunyoung4b0212c2015-10-29 17:11:57 -070039 public static final String TAG_SENSOR = "CAR.SENSOR";
40 public static final String TAG_SERVICE = "CAR.SERVICE";
Keun-young Parkd73afae2016-04-08 20:03:32 -070041 public static final String TAG_SYS = "CAR.SYS";
Keun-young Park4727da32016-05-31 10:00:51 -070042 public static final String TAG_TEST = "CAR.TEST";
Enrico Granata5c56d2a2017-02-07 15:38:12 -080043 public static final String TAG_DIAGNOSTIC = "CAR.DIAGNOSTIC";
keunyoungca515072015-07-10 12:21:47 -070044}