Dear friends,
I’m encountering an issue with MQTT flooding my Home Assistant Core raw logs with warning messages:
2026-01-22 09:01:41.944 WARNING (MainThread) [homeassistant.components.mqtt.light.schema_json] Invalid color mode 'color_temp' received for entity light.salle_a_manger_suspension_droite
2026-01-22 09:01:51.942 WARNING (MainThread) [homeassistant.components.mqtt.light.schema_json] Invalid color mode 'color_temp' received for entity light.salle_a_manger_suspension_droite
2026-01-22 09:03:54.969 WARNING (MainThread) [homeassistant.components.mqtt.light.schema_json] Invalid color mode 'color_temp' received for entity light.salle_a_manger_suspension_gauche
2026-01-22 09:04:04.945 WARNING (MainThread) [homeassistant.components.mqtt.light.schema_json] Invalid color mode 'color_temp' received for entity light.salle_a_manger_suspension_gauche
2026-01-22 09:04:14.945 WARNING (MainThread) [homeassistant.components.mqtt.light.schema_json] Invalid color mode 'color_temp' received for entity light.salle_a_manger_suspension_gauche
2026-01-22 09:04:24.945 WARNING (MainThread) [homeassistant.components.mqtt.light.schema_json] Invalid color mode 'color_temp' received for entity light.salle_a_manger_suspension_gauche
2026-01-22 09:04:34.944 WARNING (MainThread) [homeassistant.components.mqtt.light.schema_json] Invalid color mode 'color_temp' received for entity light.salle_a_manger_suspension_gauche
2026-01-22 09:04:44.946 WARNING (MainThread) [homeassistant.components.mqtt.light.schema_json] Invalid color mode 'color_temp' received for entity light.salle_a_manger_suspension_gauche
2026-01-22 09:04:54.946 WARNING (MainThread) [homeassistant.components.mqtt.light.schema_json] Invalid color mode 'color_temp' received for entity light.salle_a_manger_suspension_gauche
2026-01-22 09:05:04.997 WARNING (MainThread) [homeassistant.components.mqtt.light.schema_json] Invalid color mode 'color_temp' received for entity light.salle_a_manger_suspension_gauche
2026-01-22 09:05:14.990 WARNING (MainThread) [homeassistant.components.mqtt.light.schema_json] Invalid color mode 'color_temp' received for entity light.salle_a_manger_suspension_gauche
2026-01-22 09:05:24.940 WARNING (MainThread) [homeassistant.components.mqtt.light.schema_json] Invalid color mode 'color_temp' received for entity light.salle_a_manger_suspension_gauche
2026-01-22 09:05:45.616 WARNING (MainThread) [homeassistant.components.mqtt.light.schema_json] Invalid color mode 'color_temp' received for entity light.salle_a_manger_suspension_entree
These three lights are Philips Hue White bulbs (brightness only), but it seems the payload is sending color temperature commands to them.
I use these lights in a Zigbee group controlled by Adaptive Lighting, but I don’t think it’s related since the warnings appear even when the add-on is disabled.
These bulbs were auto-configured by Zigbee2MQTT and expose only brightness in the GUI, but their States section shows:
{
"brightness": 203,
"color": {
"x": 0.3608,
"y": 0.3635
},
"color_mode": "color_temp",
"color_temp": 222,
"last_seen": "2026-01-19T14:52:49.372Z",
"linkquality": 255,
"power_on_behavior": "on",
"state": "ON"
}
And payload :
[22/01/2026 09:36:27] z2m:mqtt: MQTT publish: topic 'zigbee2mqtt/Salle a manger - Suspension gauche', payload '{"brightness":177,"color":{"x":0.3608,"y":0.3635},"color_mode":"color_temp","color_temp":222,"effect":null,"last_seen":"2026-01-22T08:36:27.556Z","linkquality":255,"power_on_behavior":"on","state":"ON","update":{"installed_version":16787202,"latest_version":16787202,"state":"idle"}}'
Is this where the problem comes from?
Any advice on how to fix or silence these warnings?
Thanks in advance!