Skip to content

Commit 410d173

Browse files
committed
fix(sec-touch): remove noisy warn log
1 parent 89ceab6 commit 410d173

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/sec_touch/fan/sec_touch_fan.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ SecTouchFan::SecTouchFan(SECTouchComponent *parent, int level_id, int label_id)
1212

1313
// LEVEL HANDLER This is the data tha comes from the real device.
1414
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);
15+
ESP_LOGD(TAG, "New Real Speed from device for property_id %d (speed %d)", property_id, real_speed_from_device);
1616

1717
FanModeEnum::FanMode mode_from_hardware = SecTouchFan::calculate_mode_from_speed(real_speed_from_device);
1818
std::string_view mode_from_hardware_str = FanModeEnum::to_string(mode_from_hardware);

0 commit comments

Comments
 (0)