Skip to content

Commit 97a1286

Browse files
authored
Merge pull request #592 from alepee/patch-1
fix: Logger has no method print
2 parents 251f997 + ac520f8 commit 97a1286

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/easee/controller.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ async def async_update_observation(self, data_type, data_id, value):
398398
try:
399399
first, second = name.split("_")
400400
except Exception as ex: # pylint: disable=broad-except
401-
_LOGGER.print("Exception %s when splitting %s", ex, name)
401+
_LOGGER.debug("Exception %s when splitting %s", ex, name)
402402
return False
403403

404404
if first == "state":

0 commit comments

Comments
 (0)