Removed spammy debug message

This commit is contained in:
Dreaded_X 2024-12-04 01:34:46 +01:00
parent d39432fa22
commit 03f1790627
Signed by: Dreaded_X
GPG Key ID: FA5F485356B0D2D4
2 changed files with 0 additions and 2 deletions

View File

@ -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::<Zigbee929003017102>(&message.payload) {
Ok(message) => message.action,

View File

@ -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(),