diff options
author | YK Jeffrey Chao <jechao@broadcom.com> | 2012-08-24 11:47:04 -0700 |
---|---|---|
committer | Matthew Xie <mattx@google.com> | 2012-08-24 15:45:44 -0700 |
commit | 8ea28806bf5443ebf2e3449f810961ddbcf26d01 (patch) | |
tree | bc53130b89568cbd8efdc485ac35926353e3ad07 /bta/sys | |
parent | e9d957443d3e5d7427c5d09a306e2b5e99d26201 (diff) | |
download | external_bluetooth_bluedroid-8ea28806bf5443ebf2e3449f810961ddbcf26d01.zip external_bluetooth_bluedroid-8ea28806bf5443ebf2e3449f810961ddbcf26d01.tar.gz external_bluetooth_bluedroid-8ea28806bf5443ebf2e3449f810961ddbcf26d01.tar.bz2 |
Remove hardcoded trace level settings in stack modules.
BTM, BTU, and BTA modules were preset with hardcoded trace level
(BT_TRACE_LEVEL_DEBUG) during early development days. Since the trace levels
have been made configurable in /etc/bluetooth/bt_stack.conf at run-time,
removing those hardcoded settings.
So, the compile-time default trace level BT_TRACE_LEVEL_WARNING (set in
bt_trace.h) will be used if the bt_stack.conf is missing, or if the
TraceConf=false is given in the bt_stack.conf.
Change-Id: I76d905adbfda3c40f714398da86ebec90a1a8a40
Diffstat (limited to 'bta/sys')
-rw-r--r-- | bta/sys/bta_sys_cfg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bta/sys/bta_sys_cfg.c b/bta/sys/bta_sys_cfg.c index 4d102ef..bf728cd 100644 --- a/bta/sys/bta_sys_cfg.c +++ b/bta/sys/bta_sys_cfg.c @@ -34,7 +34,7 @@ const tBTA_SYS_CFG bta_sys_cfg = BTA_MBOX_EVT, /* GKI mailbox event */ BTA_MBOX, /* GKI mailbox id */ BTA_TIMER, /* GKI timer id */ - BT_TRACE_LEVEL_DEBUG //TODO: Fix this - APPL_INITIAL_TRACE_LEVEL /* initial trace level */ + APPL_INITIAL_TRACE_LEVEL /* initial trace level */ }; tBTA_SYS_CFG *p_bta_sys_cfg = (tBTA_SYS_CFG *)&bta_sys_cfg; |