Skip to content

Commit

Permalink
Merge pull request #81 from JonasPed/pyeloverblik-0.4.1
Browse files Browse the repository at this point in the history
Clarify log statement and bump pyeloverblik.
  • Loading branch information
JonasPed authored Mar 6, 2023
2 parents 00eeaef + 8d996bb commit 89af8fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/eloverblik/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def update_meter_reading(self):
if meter_reading_data.status == 200:
self._meter_reading_data = meter_reading_data
else:
_LOGGER.warn(f"Error from eloverblik when getting meter rading data: {meter_reading_data.status} - {meter_reading_data.detailed_status}")
_LOGGER.info(f"Error from eloverblik when getting meter reading data: {meter_reading_data.status} - {meter_reading_data.detailed_status}. This is not a bug. Just an indication that data is not available in Eloverblik.dk.")
except requests.exceptions.HTTPError as he:
message = None
if he.response.status_code == 401:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/eloverblik/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/eloverblik",
"requirements": [
"pyeloverblik==0.4.0"
"pyeloverblik==0.4.1"
],
"ssdp": [],
"zeroconf": [],
Expand Down

0 comments on commit 89af8fe

Please sign in to comment.