1ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang/*
2ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang * Copyright 2012, The Android Open Source Project
3ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang *
4ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang * Licensed under the Apache License, Version 2.0 (the "License");
5ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang * you may not use this file except in compliance with the License.
6ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang * You may obtain a copy of the License at
7ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang *
8ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang *     http://www.apache.org/licenses/LICENSE-2.0
9ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang *
10ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang * Unless required by applicable law or agreed to in writing, software
11ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang * distributed under the License is distributed on an "AS IS" BASIS,
12ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang * See the License for the specific language governing permissions and
14ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang * limitations under the License.
15ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang */
16ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang
17ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang#ifndef BCC_SUPPORT_LOG_H
18ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang#define BCC_SUPPORT_LOG_H
19ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang
20ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang#ifndef LOG_TAG
21ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang#   define LOG_TAG "bcc"
22ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang#   include <cutils/log.h>
23ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang#endif
24ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang
25ef73a242762bcd8113b9b65ceccbe7d909b5acbcZonr Chang#endif // BCC_SUPPORT_LOG_H
26