1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-27 07:32:22 +01:00

remote_base: change dumpers log level (#5253)

This commit is contained in:
Sergey Dudanov
2023-08-16 03:11:44 +04:00
committed by GitHub
parent 6089526975
commit 4a518e3e7a
22 changed files with 29 additions and 29 deletions

View File

@@ -232,7 +232,7 @@ optional<NexaData> NexaProtocol::decode(RemoteReceiveData src) {
}
void NexaProtocol::dump(const NexaData &data) {
ESP_LOGD(TAG, "Received NEXA: device=0x%04X group=%d state=%d channel=%d level=%d", data.device, data.group,
ESP_LOGI(TAG, "Received NEXA: device=0x%04X group=%d state=%d channel=%d level=%d", data.device, data.group,
data.state, data.channel, data.level);
}