Skip to content

Commit 68e253f

Browse files
committed
fix(zigbee): Remove debug logs
1 parent 2e57aa4 commit 68e253f

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

libraries/Zigbee/src/ZigbeeCore.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -794,13 +794,8 @@ const char *ZigbeeCore::getDeviceTypeString(esp_zb_ha_standard_devices_t deviceI
794794
}
795795

796796
void ZigbeeCore::callDefaultResponseCallback(zb_cmd_type_t resp_to_cmd, esp_zb_zcl_status_t status, uint8_t endpoint, uint16_t cluster) {
797-
log_v("Global callback called: cmd=%d, status=%s, ep=%d, cluster=0x%04x", resp_to_cmd, esp_zb_zcl_status_to_name(status), endpoint, cluster);
798797
if (_global_default_response_cb) {
799-
log_v("Global callback is set, calling it");
800798
_global_default_response_cb(resp_to_cmd, status, endpoint, cluster);
801-
log_v("Global callback completed");
802-
} else {
803-
log_v("Global callback is NOT set");
804799
}
805800
}
806801

0 commit comments

Comments
 (0)