diff options
author | Martijn Coenen <maco@google.com> | 2012-03-16 13:15:23 -0700 |
---|---|---|
committer | Martijn Coenen <maco@google.com> | 2012-03-16 13:15:23 -0700 |
commit | 25aa129fc1d808b678a2c0250ef12e1cabc6629e (patch) | |
tree | 36b4be5944c86c1242d3a0444b537b7cc64d66b1 | |
parent | c67f72f38f9c22b8a3c217a0807b40f2eda78f08 (diff) | |
download | external_libnfc-nxp-25aa129fc1d808b678a2c0250ef12e1cabc6629e.zip external_libnfc-nxp-25aa129fc1d808b678a2c0250ef12e1cabc6629e.tar.gz external_libnfc-nxp-25aa129fc1d808b678a2c0250ef12e1cabc6629e.tar.bz2 |
Don't dump nfc target/initiator modes to system log.
Change-Id: I1938f348704f6fabefa6600ecf32ff7d6204d021
-rw-r--r-- | src/phHciNfc_Sequence.c | 4 |
1 files 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)); |