| The Android Open Source Project | e9df6ba | 2012-12-13 14:55:37 -0800 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Copyright (C) 2012 Broadcom Corporation |
| 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | * |
| 17 | ******************************************************************************/ |
| 18 | |
| 19 | /****************************************************************************** |
| 20 | * |
| 21 | * Override the Android logging macro(s) from |
| 22 | * /system/core/include/cutils/log.h. This header must be the first header |
| 23 | * included by a *.cpp file so the original Android macro can be replaced. |
| 24 | * Do not include this header in another header, because that will create |
| 25 | * unnecessary dependency. |
| 26 | * |
| 27 | ******************************************************************************/ |
| 28 | #pragma once |
| 29 | |
| Ruchi Kandoi | 6fca02d | 2017-01-30 14:28:16 -0800 | [diff] [blame] | 30 | // Override Android's ALOGD macro by adding a boolean expression. |
| 31 | #define ALOGD(...) \ |
| 32 | ((void)ALOGD_IF(appl_trace_level >= BT_TRACE_LEVEL_DEBUG, __VA_ARGS__)) |
| The Android Open Source Project | e9df6ba | 2012-12-13 14:55:37 -0800 | [diff] [blame] | 33 | |
| Ruchi Kandoi | 6fca02d | 2017-01-30 14:28:16 -0800 | [diff] [blame] | 34 | #include <cutils/log.h> //define Android logging macros |
| Evan Chu | a24be4f | 2013-11-13 15:30:16 -0500 | [diff] [blame] | 35 | #include "bt_types.h" |
| The Android Open Source Project | e9df6ba | 2012-12-13 14:55:37 -0800 | [diff] [blame] | 36 | |
| 37 | #ifdef __cplusplus |
| 38 | extern "C" { |
| 39 | #endif |
| Martijn Coenen | 5c65c3a | 2013-03-27 13:23:36 -0700 | [diff] [blame] | 40 | |
| Evan Chu | a24be4f | 2013-11-13 15:30:16 -0500 | [diff] [blame] | 41 | extern unsigned char appl_trace_level; |
| Ruchi Kandoi | 512ee63 | 2017-01-03 13:59:10 -0800 | [diff] [blame] | 42 | extern uint32_t ScrProtocolTraceFlag; |
| Love Khanna | 75ec928 | 2017-06-02 19:55:05 +0530 | [diff] [blame] | 43 | /* defined for run time DTA mode selection */ |
| 44 | extern unsigned char appl_dta_mode_flag; |
| 45 | |
| 46 | void initializeGlobalAppDtaMode(); |
| The Android Open Source Project | e9df6ba | 2012-12-13 14:55:37 -0800 | [diff] [blame] | 47 | |
| The Android Open Source Project | e9df6ba | 2012-12-13 14:55:37 -0800 | [diff] [blame] | 48 | /******************************************************************************* |
| 49 | ** |
| 50 | ** Function: initializeGlobalAppLogLevel |
| 51 | ** |
| 52 | ** Description: Initialize and get global logging level from .conf or |
| 53 | ** Android property nfc.app_log_level. The Android property |
| 54 | ** overrides .conf variable. |
| 55 | ** |
| 56 | ** Returns: Global log level: |
| Ruchi Kandoi | 552f2b7 | 2017-01-28 16:22:55 -0800 | [diff] [blame] | 57 | ** BT_TRACE_LEVEL_NONE 0 * No trace messages to be generated |
| 58 | ** BT_TRACE_LEVEL_ERROR 1 * Error condition trace messages |
| 59 | ** BT_TRACE_LEVEL_WARNING 2 * Warning condition trace messages |
| 60 | ** BT_TRACE_LEVEL_API 3 * API traces |
| 61 | ** BT_TRACE_LEVEL_EVENT 4 * Debug messages for events |
| 62 | ** BT_TRACE_LEVEL_DEBUG 5 * Debug messages (general) |
| The Android Open Source Project | e9df6ba | 2012-12-13 14:55:37 -0800 | [diff] [blame] | 63 | ** |
| 64 | *******************************************************************************/ |
| Ruchi Kandoi | 6fca02d | 2017-01-30 14:28:16 -0800 | [diff] [blame] | 65 | unsigned char initializeGlobalAppLogLevel(); |
| 66 | uint32_t initializeProtocolLogLevel(); |
| Martijn Coenen | 5c65c3a | 2013-03-27 13:23:36 -0700 | [diff] [blame] | 67 | |
| 68 | #ifdef __cplusplus |
| 69 | } |
| 70 | #endif |