remove log

This commit is contained in:
Maxim Slipenko 2023-12-10 13:47:33 +03:00
parent ae7e408b4e
commit d021d7c29d

View File

@ -113,19 +113,14 @@ namespace esphome
totalFpSeen++; totalFpSeen++;
} }
ESP_LOGD(TAG, "F %s", f->getAddress().toString().c_str());
if (f->hasReport()) { if (f->hasReport()) {
ESP_LOGD(TAG, "hasReport");
if (reportBuffer(f)) { if (reportBuffer(f)) {
ESP_LOGD(TAG, "reportBuffer");
f->clearReport(); f->clearReport();
} }
} }
if (this->reportDevice(f)) { if (this->reportDevice(f)) {
ESP_LOGD(TAG, "reportDevice");
totalFpReported++; totalFpReported++;
reported++; reported++;
} }