From fb2cbf9eebd6220652dac64bd0b27e0cf22d78a8 Mon Sep 17 00:00:00 2001 From: Rotem Date: Mon, 27 Apr 2026 16:28:16 +0300 Subject: [PATCH] Reduce image logbook spam --- homeassistant/components/logbook/const.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/logbook/const.py b/homeassistant/components/logbook/const.py index 282580bdc95ce9..b4a25df2ee8c9e 100644 --- a/homeassistant/components/logbook/const.py +++ b/homeassistant/components/logbook/const.py @@ -11,9 +11,13 @@ # Domains that are always continuous # # These are hard coded here to avoid importing -# the entire counter and proximity integrations +# the entire counter, image, and proximity integrations # to get the name of the domain. -ALWAYS_CONTINUOUS_DOMAINS = {"counter", "proximity"} +ALWAYS_CONTINUOUS_DOMAINS = { + "counter", + "image", + "proximity", +} # Domains that are continuous if there is a UOM set on the entity CONDITIONALLY_CONTINUOUS_DOMAINS = {SENSOR_DOMAIN}