We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89ceab6 commit 410d173Copy full SHA for 410d173
1 file changed
components/sec_touch/fan/sec_touch_fan.cpp
@@ -12,7 +12,7 @@ SecTouchFan::SecTouchFan(SECTouchComponent *parent, int level_id, int label_id)
12
13
// LEVEL HANDLER This is the data tha comes from the real device.
14
this->parent->register_recursive_update_listener(this->level_id, [this](int property_id, int real_speed_from_device) {
15
- ESP_LOGW(TAG, "New Real Speed from device for property_id %d (speed %d)", property_id, real_speed_from_device);
+ ESP_LOGD(TAG, "New Real Speed from device for property_id %d (speed %d)", property_id, real_speed_from_device);
16
17
FanModeEnum::FanMode mode_from_hardware = SecTouchFan::calculate_mode_from_speed(real_speed_from_device);
18
std::string_view mode_from_hardware_str = FanModeEnum::to_string(mode_from_hardware);
0 commit comments