diff --git a/src/devices/hue_switch.rs b/src/devices/hue_switch.rs index b9f388a..1a9b601 100644 --- a/src/devices/hue_switch.rs +++ b/src/devices/hue_switch.rs @@ -61,7 +61,6 @@ impl LuaDeviceCreate for HueSwitch { impl OnMqtt for HueSwitch { async fn on_mqtt(&self, message: Publish) { // Check if the message is from the deviec itself or from a remote - debug!(id = Device::get_id(self), "Mqtt message received"); if matches(&message.topic, &self.config.mqtt.topic) { let action = match serde_json::from_slice::(&message.payload) { Ok(message) => message.action, diff --git a/src/devices/ikea_remote.rs b/src/devices/ikea_remote.rs index 0f8d236..c679b6a 100644 --- a/src/devices/ikea_remote.rs +++ b/src/devices/ikea_remote.rs @@ -61,7 +61,6 @@ impl LuaDeviceCreate for IkeaRemote { impl OnMqtt for IkeaRemote { async fn on_mqtt(&self, message: Publish) { // Check if the message is from the deviec itself or from a remote - debug!(id = Device::get_id(self), "Mqtt message received"); if matches(&message.topic, &self.config.mqtt.topic) { let action = match RemoteMessage::try_from(message) { Ok(message) => message.action(),