mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-24 14:10:55 +01:00
Cleanup logs.
This commit is contained in:
parent
d38865e022
commit
e45fb8616a
1 changed files with 0 additions and 4 deletions
|
@ -277,10 +277,6 @@ std::string NimBLEUUID::toString() const {
|
||||||
*/
|
*/
|
||||||
bool NimBLEUUID::operator ==(const NimBLEUUID & rhs) const {
|
bool NimBLEUUID::operator ==(const NimBLEUUID & rhs) const {
|
||||||
if(m_valueSet && rhs.m_valueSet) {
|
if(m_valueSet && rhs.m_valueSet) {
|
||||||
NIMBLE_LOGD(LOG_TAG,"Comparing UUIDs; type %u to %u; UUID %s to %s",
|
|
||||||
m_uuid.u.type, rhs.m_uuid.u.type,
|
|
||||||
this->toString().c_str(), rhs.toString().c_str());
|
|
||||||
|
|
||||||
if(m_uuid.u.type != rhs.m_uuid.u.type) {
|
if(m_uuid.u.type != rhs.m_uuid.u.type) {
|
||||||
uint8_t uuidBase[16] = {
|
uint8_t uuidBase[16] = {
|
||||||
0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
|
0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
|
||||||
|
|
Loading…
Reference in a new issue