Skip to content

Commit

Permalink
Merge pull request #420 from dwlfrth/outside-weather-loglevel
Browse files Browse the repository at this point in the history
Outdoor weather: Changed Condition log level to decrease verbosity
  • Loading branch information
ic-dev21 authored Apr 19, 2024
2 parents a19905b + 4c7ac3d commit 53a37f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/hilo/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ def state(self):
@property
def icon(self):
condition = self._weather.get("condition", "").lower()
LOG.warning(f"Current condition: {condition}")
LOG.debug(f"Current condition: {condition}")
if not condition:
return "mdi:lan-disconnect"
return WEATHER_CONDITIONS.get(self._weather.get("condition", "Unknown"))
Expand Down

0 comments on commit 53a37f3

Please sign in to comment.