Skip to content

Commit

Permalink
Adjusting log level for is_same_address_
Browse files Browse the repository at this point in the history
  • Loading branch information
bendikwa committed May 20, 2023
1 parent 098b108 commit dadc0d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/igrill/igrill.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ namespace esphome
{
if (a[i] != b[i])
{
ESP_LOGD(TAG, "Addresses do not match a: %02X:%02X:%02X:%02X:%02X:%02X b: %02X:%02X:%02X:%02X:%02X:%02X",
ESP_LOGV(TAG, "Addresses do not match a: %02X:%02X:%02X:%02X:%02X:%02X b: %02X:%02X:%02X:%02X:%02X:%02X",
a[0], a[1], a[2], a[3], a[4], a[5], b[0], b[1], b[2], b[3], b[4], b[5]);
return false;
}
Expand Down

0 comments on commit dadc0d9

Please sign in to comment.