mbed Connector Interface simplification API on top of mbed-client

Fork of mbedConnectorInterfaceV3 by Doug Anson

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!

Revision:
45:db754b994deb
Parent:
44:7c73baf9f4c1
Child:
46:62da4ce20276
--- a/source/ConnectorEndpoint.cpp	Wed Jun 15 19:40:08 2016 +0000
+++ b/source/ConnectorEndpoint.cpp	Wed Jun 15 20:51:13 2016 +0000
@@ -441,12 +441,12 @@
     NamedPointerList list = this->getObjectInstanceManager()->getObjectList();
     
     // DEBUG
-    this->logger()->log("Endpoint::build(): All Resources bound. Number of Objects in list: %d",list.size());
+    //this->logger()->log("Endpoint::build(): All Resources bound. Number of Objects in list: %d",list.size());
         
     // add all of the object instances we have created...
     for(int i=0;i<(int)list.size();++i) {
     	// DEBUG
-    	this->logger()->log("Endpoint::build(): adding Object Instance with ObjID: %s...",list.at(i).name().c_str());
+    	//this->logger()->log("Endpoint::build(): adding Object Instance with ObjID: %s...",list.at(i).name().c_str());
     	
     	// push back the object instance...
     	this->m_object_list.push_back((M2MObject *)(list.at(i).ptr()));