diff options
Diffstat (limited to 'btif/include/btif_common.h')
-rw-r--r-- | btif/include/btif_common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/btif/include/btif_common.h b/btif/include/btif_common.h index 5613004..8e5c275 100644 --- a/btif/include/btif_common.h +++ b/btif/include/btif_common.h @@ -70,7 +70,7 @@ ** Constants & Macros ************************************************************************************/ -#define ASSERTC(cond, msg, val) if (!(cond)) {LOGE("### ASSERT : %s line %d %s (%d) ###", __FILE__, __LINE__, msg, val);} +#define ASSERTC(cond, msg, val) if (!(cond)) {ALOGE("### ASSERT : %s line %d %s (%d) ###", __FILE__, __LINE__, msg, val);} /* Calculate start of event enumeration; id is top 8 bits of event */ #define BTIF_SIG_START(id) ((id) << 8) @@ -90,7 +90,7 @@ extern bt_callbacks_t *bt_hal_cbacks; #define HAL_CBACK(P_CB, P_CBACK, ...)\ if (P_CB && P_CB->P_CBACK) { \ - LOGD("HAL %s->%s", #P_CB, #P_CBACK); \ + ALOGD("HAL %s->%s", #P_CB, #P_CBACK); \ P_CB->P_CBACK(__VA_ARGS__); \ } \ else { \ |