blob: fd5e0155d9cbacb2bda148da0c9e2297d218eaa0 [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 {
keunyounge4c90c42015-11-16 18:42:52 -080020 public static final String TAG_APP_CONTEXT = "CAR.APP_CONTEXT";
keunyoung4b0212c2015-10-29 17:11:57 -070021 public static final String TAG_AUDIO = "CAR.AUDIO";
keunyoungcc449f72015-08-12 10:46:27 -070022 public static final String TAG_HAL = "CAR.HAL";
Steve Paik66481982015-10-27 15:22:38 -070023 public static final String TAG_HVAC = "CAR.HVAC";
keunyounga3b28d82015-08-25 13:05:15 -070024 public static final String TAG_INFO = "CAR.INFO";
keunyoung4b0212c2015-10-29 17:11:57 -070025 public static final String TAG_POWER = "CAR.POWER";
Sanket Agarwal3cf096a2015-10-13 14:46:31 -070026 public static final String TAG_RADIO = "CAR.RADIO";
keunyoung4b0212c2015-10-29 17:11:57 -070027 public static final String TAG_SENSOR = "CAR.SENSOR";
28 public static final String TAG_SERVICE = "CAR.SERVICE";
keunyoung1ab8e182015-09-24 09:25:22 -070029 public static final String TAG_TEST = "CAR.TEST";
keunyoungca515072015-07-10 12:21:47 -070030}