From 3947273ef7ae33fecad151c81be440502fbff0b8 Mon Sep 17 00:00:00 2001 From: dcbr <15089458+dcbr@users.noreply.github.com> Date: Thu, 30 Jan 2025 09:14:51 +0100 Subject: [PATCH] Change print to debug logging --- custom_components/irm_kmi/coordinator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/irm_kmi/coordinator.py b/custom_components/irm_kmi/coordinator.py index 3c83ff2..0422b4f 100644 --- a/custom_components/irm_kmi/coordinator.py +++ b/custom_components/irm_kmi/coordinator.py @@ -138,7 +138,7 @@ async def _async_animation_data(self, api_data: dict) -> RadarAnimationData: location=localisation ) rain_graph = await self.create_rain_graph(radar_animation, animation_data, country, images_from_api) - print(rain_graph) + _LOGGER.debug(rain_graph) radar_animation['svg_animated'] = rain_graph.get_svg_string() radar_animation['svg_still'] = rain_graph.get_svg_string(still_image=True) return radar_animation