Removing unnecessary logs in message handler.
authorOmkar Hegde <omkar.m.hegde@intel.com>
Thu, 23 Jul 2015 18:11:50 +0000 (11:11 -0700)
committerErich Keane <erich.keane@intel.com>
Thu, 23 Jul 2015 19:43:28 +0000 (19:43 +0000)
The "IN" and "OUT" tags give no useful information
and completely floods the debug mode. All the useful
information is already being logged within the function.

Change-Id: Ieac528913b659fbaccedcb465000f11f370b678a
Signed-off-by: Omkar Hegde <omkar.m.hegde@intel.com>
Signed-off-by: vimala.v <vimala.v@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/1816
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Erich Keane <erich.keane@intel.com>
auto_build.sh
resource/csdk/connectivity/src/camessagehandler.c

index 6962727..7576311 100755 (executable)
@@ -120,9 +120,11 @@ function build_darwin() # Mac OSx and iOS
 
 function unit_tests()
 {
+       echo "*********** Unit test Start *************"
        scons resource RELEASE=false -c
        scons resource LOGGING=false RELEASE=false
        scons resource TEST=1 RELEASE=false
+       echo "*********** Unit test Stop *************"
 }
 
 function  help()
index a6f4c4d..a7b4365 100644 (file)
@@ -680,7 +680,6 @@ static void CANetworkChangedCallback(const CAEndpoint_t *info, CANetworkStatus_t
 
 void CAHandleRequestResponseCallbacks()
 {
-    OIC_LOG(DEBUG, TAG, "CAHandleRequestResponseCallbacks IN");
 #ifdef SINGLE_THREAD
     CAReadData();
     CARetransmissionBaseRoutine((void *)&g_retransmissionContext);
@@ -733,7 +732,6 @@ void CAHandleRequestResponseCallbacks()
 
 #endif /* SINGLE_HANDLE */
 #endif
-    OIC_LOG(DEBUG, TAG, "CAHandleRequestResponseCallbacks OUT");
 }
 
 static CAData_t* CAPrepareSendData(const CAEndpoint_t *endpoint, const void *sendData,