From fa3b5aa523051828b4a18ec33f27f16836f98592 Mon Sep 17 00:00:00 2001 From: SchiZzA Date: Fri, 6 Feb 2026 18:20:17 +0100 Subject: [PATCH] Anonymize data payload in PocasiPush logging --- custom_components/sws12500/pocasti_cz.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/sws12500/pocasti_cz.py b/custom_components/sws12500/pocasti_cz.py index 5fbe7f9..9291c42 100644 --- a/custom_components/sws12500/pocasti_cz.py +++ b/custom_components/sws12500/pocasti_cz.py @@ -24,7 +24,7 @@ from .const import ( POCASI_INVALID_KEY, WSLINK_URL, ) -from .utils import update_options +from .utils import anonymize, update_options _LOGGER = logging.getLogger(__name__) @@ -122,7 +122,7 @@ class PocasiPush: "Payload for Pocasi Meteo server: [mode=%s] [request_url=%s] = %s", mode, request_url, - _data, + anonymize(_data), ) try: async with session.get(request_url, params=_data) as resp: