Skip to content

Commit 7302be9

Browse files
committed
fix(matter): log_i() leftover
1 parent 6f79e03 commit 7302be9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: libraries/Matter/examples/MatterOnIdentify/MatterOnIdentify.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ bool onOffLightCallback(bool state) {
6565

6666
// Identification shall be done by Blink in Red or just the GPIO when no LED_BUILTIN is not defined
6767
bool onIdentifyLightCallback(bool identifyIsActive) {
68-
log_i("Identify Cluster is %s", identifyIsActive ? "Active" : "Inactive");
68+
Serial.printf("Identify Cluster is %s\r\n", identifyIsActive ? "Active" : "Inactive");
6969
if (identifyIsActive) {
7070
// Start Blinking the light in loop()
7171
identifyFlag = true;

0 commit comments

Comments
 (0)