Skip to content

Commit 7d1e850

Browse files
Delete log output
1 parent 3cac5e5 commit 7d1e850

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

libraries/BLE/src/BLERemoteService.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,14 +231,12 @@ std::map<std::string, BLERemoteCharacteristic*>* BLERemoteService::getCharacteri
231231
* @return A map of all the characteristics of this service.
232232
*/
233233
std::map<uint16_t, BLERemoteCharacteristic*>* BLERemoteService::getCharacteristicsByHandle() {
234-
log_v(">> getCharacteristicsByHandle() for service: %s", getUUID().toString().c_str());
235234
// If is possible that we have not read the characteristics associated with the service so do that
236235
// now. The request to retrieve the characteristics by calling "retrieveCharacteristics" is a blocking
237236
// call and does not return until all the characteristics are available.
238237
if (!m_haveCharacteristics) {
239238
retrieveCharacteristics();
240239
}
241-
log_v("<< getCharacteristicsByHandle() for service: %s", getUUID().toString().c_str());
242240
return &m_characteristicMapByHandle;
243241
} // getCharacteristicsByHandle
244242

0 commit comments

Comments
 (0)