From 25aa129fc1d808b678a2c0250ef12e1cabc6629e Mon Sep 17 00:00:00 2001 From: Martijn Coenen Date: Fri, 16 Mar 2012 13:15:23 -0700 Subject: Don't dump nfc target/initiator modes to system log. Change-Id: I1938f348704f6fabefa6600ecf32ff7d6204d021 --- src/phHciNfc_Sequence.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/phHciNfc_Sequence.c b/src/phHciNfc_Sequence.c index 400fa7a..1ef7265 100644 --- a/src/phHciNfc_Sequence.c +++ b/src/phHciNfc_Sequence.c @@ -1666,7 +1666,7 @@ phHciNfc_PollLoop_Sequence( #define NFCIP_ACTIVE_SHIFT 0x03U #define NFCIP_PASSIVE_MASK 0x07U uint8_t mode = targetSpeed; - ALOGE("Setting target mode to 0x%02X", mode); + HCI_DEBUG("Setting target mode to 0x%02X", mode); status = phHciNfc_NfcIP_SetMode( psHciContext, pHwRef, NFCIP_TARGET, (uint8_t) mode ); @@ -1687,7 +1687,7 @@ phHciNfc_PollLoop_Sequence( #if defined (ENABLE_P2P) && defined (INITIATOR_SPEED) case INITIATOR_SPEED_SEQ: { - ALOGE("Setting initiator mode to 0x%02X", speed); + HCI_DEBUG("Setting initiator mode to 0x%02X", speed); status = phHciNfc_NfcIP_SetMode( psHciContext, pHwRef, NFCIP_INITIATOR, (uint8_t) (speed & DEFAULT_NFCIP_INITIATOR_MODE_SUPPORT)); -- cgit v1.1