From f084763e189737693eaffcfe7b9524676e120ec1 Mon Sep 17 00:00:00 2001 From: Nils <31704359+mietzen@users.noreply.github.com> Date: Tue, 17 Feb 2026 16:57:21 +0100 Subject: [PATCH] Log on debug level if action not in payload --- apps/controllerx/cx_core/integration/z2m.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/controllerx/cx_core/integration/z2m.py b/apps/controllerx/cx_core/integration/z2m.py index ad744fb5..24cb8982 100644 --- a/apps/controllerx/cx_core/integration/z2m.py +++ b/apps/controllerx/cx_core/integration/z2m.py @@ -58,8 +58,8 @@ async def event_callback( payload = json.loads(data["payload"]) if action_key not in payload: self.controller.log( - f"⚠️ There is no `{action_key}` in the MQTT topic payload", - level="WARNING", + f"There is no `{action_key}` in the MQTT topic payload", + level="DEBUG", ascii_encode=False, ) return