Update snapshot(2018-01-04)
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / bt_le_adapter / android / calestate.c
index c1b7101..73658ce 100644 (file)
@@ -69,7 +69,7 @@ CAResult_t CALEUpdateDeviceState(const char* address,
             default:
                 break;
         }
-        OIC_LOG_V(INFO, TAG, "update state - addr: %s, conn: %d, send: %d, ACFlag: %d, mtu: %d",
+        OIC_LOG_V(DEBUG, TAG, "update state - addr: %s, conn: %d, send: %d, ACFlag: %d, mtu: %d",
                   curState->address, curState->connectedState, curState->sendState,
                   curState->autoConnectFlag, curState->mtuSize);
     }
@@ -105,7 +105,7 @@ CAResult_t CALEUpdateDeviceState(const char* address,
             default:
                 break;
         }
-        OIC_LOG_V(INFO, TAG, "add a new state to List - addr : %s, "
+        OIC_LOG_V(DEBUG, TAG, "add a new state to List - addr : %s, "
                   "conn : %d, send : %d, ACFlag : %d",
                   newstate->address, newstate->connectedState, newstate->sendState,
                   newstate->autoConnectFlag);
@@ -425,7 +425,7 @@ CAResult_t CALESetMtuSize(const char* address, uint16_t mtuSize,
         }
 
         curState->mtuSize = mtuSize;
-        OIC_LOG_V(INFO, TAG, "update state - addr: %s, mtu: %d",
+        OIC_LOG_V(DEBUG, TAG, "update state - addr: %s, mtu: %d",
                   curState->address, curState->mtuSize);
     }
     else
@@ -452,7 +452,7 @@ uint16_t CALEGetMtuSize(const char* address, u_arraylist_t *deviceList, oc_mutex
             return CA_DEFAULT_BLE_MTU_SIZE;
         }
 
-        OIC_LOG_V(INFO, TAG, "state - addr: %s, mtu: %d",
+        OIC_LOG_V(DEBUG, TAG, "state - addr: %s, mtu: %d",
                   curState->address, curState->mtuSize);
         oc_mutex_unlock(deviceListMutex);
         return curState->mtuSize;