mbed Connector Interface simplification API on top of mbed-client
Fork of mbedConnectorInterfaceV3 by
NOTE:
This repo has been replaced with https://github.com/ARMmbed/mbedConnectorInterface. No further updates will occur with this repo. Please use the github repo instead. Thanks!
Diff: source/PassphraseAuthenticator.cpp
- Revision:
- 92:dffefc450d6c
- Parent:
- 91:179b5cb420de
- Child:
- 119:75e6991644fa
--- a/source/PassphraseAuthenticator.cpp Wed Mar 01 16:18:52 2017 +0000 +++ b/source/PassphraseAuthenticator.cpp Wed Mar 01 16:23:49 2017 +0000 @@ -87,7 +87,7 @@ int length = coap_data_ptr_length; if (length > MAX_VALUE_BUFFER_LENGTH) { length = MAX_VALUE_BUFFER_LENGTH; - this->logger()->log("PassphraseAuthenticator::coapDataToString: WARNING clipped data: %d bytes to %d bytes. Increase MAX_VALUE_BUFFER_LENGTH", + this->m_logger->log("Authenticator(passphrase): WARNING clipped data: %d bytes to %d bytes. Increase MAX_VALUE_BUFFER_LENGTH", coap_data_ptr_length,length); } memcpy(buf,(char *)coap_data_ptr,length);